Forget your workaround because you are using jquery allready.
You want to get the img element with the id lighting-outdoor?
Use : var i = $("#lighting-outdoor");
Mind the # !
After that you can alter it's css by using i.css("bottom", "1px")
you could also say $("#lighting-outdoor").css
Main Topics
Browse All Topics





by: RegProctorPosted on 2008-01-24 at 04:59:32ID: 20732559
I found that there is a GetElementById bug in IE so I tried a workaround, that did help either. Here is the workaround.
Select allOpen in new window