Changing innerHTML not really working in IE

This is a discussion on "Changing innerHTML not really working in IE" within the JavaScript Forum section. This forum, and the thread "Changing innerHTML not really working in IE are both part of the Program Your Website category.


 Subscribe in a reader

Go Back   Webforumz.com > Main Forums > Program Your Website > JavaScript Forum

Notices




Reply
 
LinkBack Thread Tools
  #1  
Old Jul 21st, 2007, 18:58
Reputable Member
Join Date: Jul 2007
Location: Windsor, ON, Canada
Age: 19
Posts: 103
Thanks: 0
Thanked 0 Times in 0 Posts
Changing innerHTML not really working in IE

(original thread deleted due to... mix-up in communication i guess)

I'm working on some javascript for a gallery on my site, the coding as follows

Code: Select all
function changeImage(fileName,imgName,imgDesc)
{
document.getElementById('full').src="http://i91.photobucket.com/albums/k312/ZumoroNuva/Artwork/" + fileName;
document.getElementById('title').innerHTML=imgName;
document.getElementById('description').innerHTML=imgDesc;
document.getElementById('link').src="http://s91.photobucket.com/albums/k312/ZumoroNuva/Artwork/?action=view&current=" + fileName;
document.getElementById('image').style.display="block";
}
and the HTML

Code: Select all
<div id="image" style="display:none;">
<p><h3 id="title" style="margin:0px;">Image Title</h3>
<span id="description" style="margin:0px;">Image Description</span>
</p>

<div style="text-align:center;margin:0px auto;">
<br/>
<a id="link" href="" onclick="window.open(this.href);return false;"><img id="full" src="" alt="" class="borderBig" style="border-width:6;"></a>
</div>
</div>
the page

it works in FF but IE only does the first 2 lines (changing the src and innerHTML of the title, won't change the description or reveal the div) any ideas what's wrong?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote

  #2  
Old Jul 22nd, 2007, 01:21
Reputable Member
Join Date: Jul 2007
Location: Windsor, ON, Canada
Age: 19
Posts: 103
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Changing innerHTML not really working in IE

Never mind, i figured it out myself, for some reason IE doesn't like the "image" or "description" as IDs, so i changed them to "picture" and "info" and it works perfectly... weird...

so a mod or fa can close the other topic and possible keep this open for future reference, or add it to whatever list of IE glitches we have here.

thanks everyone... for nothing... (bad day)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #3  
Old Jul 26th, 2007, 20:31
Junior Member
Join Date: Jul 2007
Location: West Midlands
Age: 26
Posts: 33
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Changing innerHTML not really working in IE

possibly due to a conflict in ID's
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Reply

Tags
dom, innerhtml, internet explorer

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
need help on innerHTML alexhkleung JavaScript Forum 2 Dec 1st, 2007 03:52
Changing image not working in Firefox PoetAlley JavaScript Forum 5 Sep 27th, 2007 14:12
innerHtml doesn't retrive the formatting from DIV shamail ASP.NET Forum 0 Aug 24th, 2007 20:02
innerHTML and innerHTML match DregondRahl JavaScript Forum 2 Jun 11th, 2007 13:24
innerHTML in IE TheDC JavaScript Forum 6 Oct 30th, 2006 21:18


All times are GMT. The time now is 10:03.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42