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.

JBuilder/Firefox/IE

  • 27-03-2006 07:41PM
    #1
    Registered Users, Registered Users 2 Posts: 48,696 ✭✭✭✭


    Ok, here is the issue.

    creating a small EIS for a college project.

    I have a css file with the look of the site, and jsp/servlet pages with the code.

    The CSS file is held within html files called header and footer

    Borland will load everything - CSS and Code (both HTML and Java) but with inconsistencies in layout.

    Firefox will load the basic HTML and all the java code (database hook ups and dynamic listings.

    IE will load the CSS and the basic HTML but none of the Java Code (Database stuff again).

    Any ideas why they all load up different information from the same files, and more importantly, how i can go about fixing it?

    I can supply code if needed.


Comments

  • Registered Users, Registered Users 2 Posts: 48,696 ✭✭✭✭Mitch Connor


    Hopefully someone will have an answer for this:

    I have a javascript function in my code, which reloads the page when a drop down menu is changed, passing the current value of the drop down to the url, so i can use the value to create a second drop down. This works perfectly in Firefox - but doesn't work in IE. In IE it reloads the page but passes no actual value to the url. Can anyone think of a reason why it would work in forefox but not IE? the function is being called (as it does reload the page) but it does not work correctly.

    This is the function i am using:

    function StorageRefresh()
    {
    var Select = document.inventory.Category.options[document.inventory.Category.selectedIndex].value;
    self.location='Inventory.jsp?option='+Select;
    }


    Another point is that i currently have the javascript inside a javascript file, being called within a header.htm file. I have tried it with the javascript inside the code itself and it still does not work.


Advertisement