I think Beverleyh is right; you should learn some more about basic HTML and javascript first. You could also ask for help on a Wordpress forum, where users are more familiar with the working environment.
Your page is loading jQuery:
Code:
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js?ver=1.4.2'></script>
and, it is loading the lazyload plugin:
Code:
<script type='text/javascript' src='http://www.t-clicks.com/blog/wp-content/plugins/jquery-image-lazy-loading/javascripts/jquery.lazyload.mini.js?ver=1.5.0'></script>
this file:
Code:
<script type="text/javascript" src="http://www.t-clicks.com/blog/wp-content/themes/freshlife/javascript/LazyLoad.js"></script>
does not exist. That may be causing problems, or it may not impact anything.
Right here:
Code:
<script type="text/javascript">$("img").lazyload();</script>
is your lazyload call, and (as far as I can tell) it's working fine. What is it not doing that it should?
Just FYI, further down, on this line (in your #loading div, near the top of the body):
Code:
<div style="opacity: 0.4;" id="wadio" class="wadio" onmouseover="makevisible('wadio', true)" onmouseout="makevisible('wadio', false)">
you are getting a javascript error: makevisible is not defined. That stops your javascript: either find the function and make sure it's working, or get rid of the onmouseover, onmouseout events.
Bookmarks