The only thing I can think of without seeing your code is that you
aren't putting it in a .ready() funciton. Make sure the code is
wrapped in something like this:
$(document).ready(function() {
// put your thickbox code in here.
});
All of that should, of course be wrapped in <script type="text/
javascript"> ... </script>
Forgive me if I'm just stating the obvious. If you show us a demo
page with the code/markup, that will help us help you.
--Karl
_________________
Karl Swedberg
www.englishrules.com
www.learningjquery.com
On Aug 8, 2007, at 6:15 PM, cfdvlpr wrote:
Can you think of why Internet Explorer would find my Jquery code if
it's at the bottom of the thickbox page, but not find the code when
the code is placed at the top in the <head>? I'd rather not have to
put the code at the bottom of the page if possible.