-
1. Re: how to move the <script> around inside the page?
Kirsti Aho Aug 12, 2014 2:14 PM (in response to cairotn2005)Confirming the product that your using: is it Dreamweaver?
-
2. Re: how to move the <script> around inside the page?
Ken Binney Nov 6, 2014 5:19 PM (in response to cairotn2005)Just as you cut and pasted the script code in your post, you can go to
CODE VIEW and paste the script wherever it belongs -
3. Re: how to move the <script> around inside the page?
Rob Hecker2 Nov 7, 2014 3:16 AM (in response to cairotn2005)Sometimes javascript should run above the HTML it acts upon and sometimes it should run after. Although you can put the script within a div element, mixing up your HTML and your scripts is considered messy, but if you have a reason to to it you can.
HTML is run sequentially, but (usually) javascript sits in memory until it is called. I think your problem is not the placement of your javascript, but the HTML around your slideshow.
If the slideshow is "stuck on the header" then try putting <br style='clear:both'/> right before the div that contains the slideshow. If that doesn't help, show us more of the code involved.




