Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie
Hi all! We have been experiencing an issue on site where threads have been missing the latest postings. The platform host Vanilla are working on this issue. A workaround that has been used by some is to navigate back from 1 to 10+ pages to re-sync the thread and this will then show the latest posts. Thanks, Mike.
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

Javascript in Firefox

  • 20-04-2007 9:54am
    #1
    Registered Users 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,257 ✭✭✭✭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 Posts: 91 ✭✭keithrus


    No Eoin,

    That command does not even work in IE :(


  • Moderators, Politics Moderators Posts: 40,303 Mod ✭✭✭✭Seth Brundle


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


  • Registered Users, Registered Users 2 Posts: 21,257 ✭✭✭✭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