Advertisement
Help Keep Boards Alive. Support us by going ad free today. See here: https://subscriptions.boards.ie/.
If we do not hit our goal we will be forced to close the site.

Current status: https://keepboardsalive.com/

Annual subs are best for most impact. If you are still undecided on going Ad Free - you can also donate using the Paypal Donate option. All contribution helps. Thank you.
https://www.boards.ie/group/1878-subscribers-forum

Private Group for paid up members of Boards.ie. Join the club.

Javascript in Firefox

  • 20-04-2007 09:54AM
    #1
    Registered Users, Registered Users 2 Posts: 91 ✭✭


    I have an edit form and there are 2 buttons in the page. Cancel & Save.

    When I save the information it, closes the page(same windows) and goes back to the display list. However, when I cancel, it does not work.... in Firefox(IE absolutely perfect)... Below is the code for the cancel button :

    if (isset($_REQUEST)) {
    window.navigate("../testemployee.php");
    }

    <td width="40%" class="title"><span class="text"><input type="button" name="cancel" value=" Cancel " onClick="window.navigate('../testemployee.php')"></span></td>

    Any ideas for it to work in Firefox??


Comments

  • Registered Users, Registered Users 2 Posts: 21,278 ✭✭✭✭Eoin


    keithrus wrote:
    I have an edit form and there are 2 buttons in the page. Cancel & Save.

    When I save the information it, closes the page(same windows) and goes back to the display list. However, when I cancel, it does not work.... in Firefox(IE absolutely perfect)... Below is the code for the cancel button :

    if (isset($_REQUEST)) {
    window.navigate("../testemployee.php");
    }

    <td width="40%" class="title"><span class="text"><input type="button" name="cancel" value=" Cancel " onClick="window.navigate('../testemployee.php')"></span></td>

    Any ideas for it to work in Firefox??

    try:
    [html]
    <input type="button" name="cancel" value=" Cancel " onclick="document.location.href='../testemployee.php'" />
    [/html]


  • Registered Users, Registered Users 2 Posts: 91 ✭✭keithrus


    No Eoin,

    That command does not even work in IE :(


  • Moderators, Politics Moderators, Paid Member Posts: 44,258 Mod ✭✭✭✭Seth Brundle


    try
    <input type="button" name="cancel" value="  Cancel  " onclick="[B]window[/B].location.href='../testemployee.php'" />
    

    Help Keep Boards Alive. Support us by going ad free today. See here: https://subscriptions.boards.ie/ .



  • Registered Users, Registered Users 2 Posts: 21,278 ✭✭✭✭Eoin


    keithrus wrote:
    No Eoin,

    That command does not even work in IE :(

    That worked in both Firefox and IE for me, but only when I accessed it through my webserver, not from my PC.


  • Users Awaiting Email Confirmation Posts: 351 ✭✭ron_darrell


    Don't think you need to reference the .href to change the page.

    window.location = {some_location};

    should work fine


  • Advertisement
Advertisement