html - Reload picture after clickin on other page on site -
i have gif picture on every page on site, , when first time open page gif started "move", on others page doesn't, html code
<div class="rhs-pc"> <img src="images/pc-slow.gif" alt="pc animation" /> </div>
what should reload gif on every page?
make sure gif accessible relative path each page of site. example site structure:
/index.html /music/list.html /music/favorite.html /images/pc-slow.gif gif accessible index.html, broken on /music/list.html because browser try load /music/images/pc-slow.gif. use base tag prevent that, or use full path: /images/pc-slow.gif instead of images/pc-slow.gif.
Comments
Post a Comment