No equals sign here (red):
Code:
<a href="insyde.html" id="flashlink=0" rev=1 rel="Lime">Click here</a> to vis
Do it like:
Code:
<a href="insyde.html" id="flashlink0" rev=1 rel="Lime">Click here</a> to vis
The script goes right before the closing </body> tag:
Code:
</table>
</font>
</center>
<script type="text/javascript">
/***********************************************
* Flashing Link Script- © Dynamic Drive (www.dynamicdrive.com)
* This notice must stay intact for use
* Visit http://www.dynamicdrive.com/ for full source code
***********************************************/
(function(){
if(!document.getElementById&&!document.all)
return;
var changelinkcolor=function(el){
el.it=el.it? el.it : init.it+=250;
var el=el, rev=el.rev*1? 'backgroundColor' : 'color';
if (el.on)
el.style[rev]=el.rel;
else
el.style[rev]='';
el.on=!el.on;
setTimeout(function() {changelinkcolor(el);}, 1000+el.it)
}
var init=function(){
var i=0; init.it=0;
while(document.all&&document.all['flashlink'+i]!=null)
changelinkcolor(document.all['flashlink'+i++]);
if (!document.all){
while (document.getElementById('flashlink'+i)!=null)
changelinkcolor(document.getElementById('flashlink'+i++));
}
}
init();
})();
</script>
</body>
</html>
Bookmarks