User Profile

Collapse

Profile Sidebar

Collapse
mbiasetti
mbiasetti
Last Activity: Feb 25 '08, 08:11 PM
Joined: Feb 22 '08
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • mbiasetti
    replied to FF vs IE "onchange" Question
    Wow, that worked perfectly.

    I think it would have taken a very long time before I figured that one out on my own.

    Thank you very much for your help. :)
    See more | Go to post

    Leave a comment:


  • mbiasetti
    replied to FF vs IE "onchange" Question
    Code in action

    Here is a shortened version of the code:

    Code:
    window.onload = initForm;
    window.onunload = function() {};
    
    function initForm() 
    {  
    	document.getElementById("make").selectedIndex = 0;
    	document.getElementById("make").onchange = populateModels;	
    	document.getElementById("models").onchange = modelSelected;
    }
    ...
    See more | Go to post

    Leave a comment:


  • mbiasetti
    started a topic FF vs IE "onchange" Question

    FF vs IE "onchange" Question

    Hello, quick question (hopefully):

    I have a script that manipulates two "Select" elements. My onload calls a function that sets onchange for each "Select":
    Code:
    	
    document.getElementById("make").onchange = populateModels;	
    document.getElementById("models").onchange = modelSelected;
    The code works fine in Firefox (of course), but IE only recognizes the...
    See more | Go to post
No activity results to display
Show More
Working...