jQuery JavaScript Library

Posted by: Ping

jQuery is a cross-browser JavaScript library designed to simplify the client-side scripting of HTML. jQuery is the most popular JavaScript library in use today. jQuery is free, open source software, jQuery’s syntax is designed to make it easier to navigate a document, create animations, and develop Ajax applications. The modular approach to the jQuery library […]

AJAX Photo Gallery

Posted by: Ping

Sample: http://sandbox.scriptiny.com/slideshow/ <div id=”gallery”> <div id=”imagearea”> <div id=”image”> <a href=”javascript:slideShow.nav(-1)” class=”imgnav ” id=”previmg”></a> <a href=”javascript:slideShow.nav(1)” class=”imgnav ” id=”nextimg”></a> </div> </div> <div id=”thumbwrapper”> <div id=”thumbarea”> <ul id=”thumbs”> <li value=”1″><img src=”thumbs/1.jpg” width=”179″ height=”100″ alt=”1″ /></li> <li value=”2″><img src=”thumbs/2.jpg” width=”179″ height=”100″ alt=”2″ /></li> <li value=”3″><img src=”thumbs/3.jpg” width=”179″ height=”100″ alt=”3″ /></li> <li value=”4″><img src=”thumbs/4.jpg” width=”179″ height=”100″ alt=”4″ /></li> <li […]