Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
2
Posts with Downvotes
2
Downvoting Members
1
0 Endorsements
Ranked #25.0K
Ranked #4K
~916 People Reached
Favorite Forums
Favorite Tags

4 Posted Topics

Member Avatar for Zanzertuchi

The issue is that [B]IE does NOT support using the .innerHTML property to *Set* the content of a Select List[/B]. (see bug report below) [URL="http://webbugtrack.blogspot.com/2007/08/bug-274-dom-methods-on-select-lists.html"]http://webbugtrack.blogspot.com/2007/08/bug-274-dom-methods-on-select-lists.html[/URL] [COLOR="Red"]This is broken in IE6, 7 and 8[/COLOR] (and has been noted by Microsoft as a "wont fix" bug) For IE you'll need to use …

Member Avatar for Tyler W. Cox
0
382
Member Avatar for yssirhc

Yes, in your remove code you are trying to remove an ID (e.g. a string/number, not a node)... add this line to your remove function. [code] function removeAdditionalFile(divNum) { var d = document.getElementById('addToDiv'); var dnNode = document.getElementById(divNum); d.removeChild(dnNode); } [/code]

Member Avatar for yssirhc
0
104
Member Avatar for Will Gresham

This is a known issue with IE. It will return any request for the innerHTML or outterHTML as a mess of UPPERCASE tags, with attributes with no double quotes, style content exploded, re-aranged and UPPERCASE, with non-self closing tags... e.g. br, hr, img, link... etc. A discussion about this can …

Member Avatar for xyzweb
0
339
Member Avatar for bogdangwawa

Internet Explorer will not let you set inline event handlers using the DOM .setAttribute() method (see this bug report): [URL="http://webbugtrack.blogspot.com/2007/08/bug-242-setattribute-doesnt-always-work.html"]http://webbugtrack.blogspot.com/2007/08/bug-242-setattribute-doesnt-always-work.html[/URL] You also can't set the name of the field (if you wanted to) due to this bug: [URL="http://webbugtrack.blogspot.com/2007/10/bug-235-createelement-is-broken-in-ie.html"]http://webbugtrack.blogspot.com/2007/10/bug-235-createelement-is-broken-in-ie.html[/URL] Rumor has it that both of these bugs will be fixed in …

Member Avatar for ~s.o.s~
0
91

The End.