People always forget how fast you did a job

But they will remember how well you did it

Preloading Images using jQuery for Slideshow

Written by Feelinc on 25 August, 2010 - 01:00 AM in Experience, Featured, Tips — Tags: , , ,
JQuery Cycle Plugin
jQuery Cycle Plugin is a good jQuery Plugin for creating image slideshow, but does not having a preloading image feature. So here i’ll explain how to implement the preloading image using jQuery integrated with jQuery Cycle Plugin.

Trik mengolah HTML on-the-fly menggunakan jQuery + JSON

Written by Feelinc on 3 July, 2009 - 10:50 AM in Blog, Experience, Research — Tags: , , , , ,
Terkadang kita bingung bagaimana cara terbaik atau yang relevan untuk membuat atau mengolah html dengan menggunakan javascript, terdapat beberapa cara : ———————————————————————————————————————— 1. Dengan membuat tag-tag html langsung $(document).ready(function(){ var list = ''; for (var i=0; i<2; i++) { list += '<li>'+i+'</li>'; } }); ('#list').html(list); maka akan menghasilkan : <ul id="list"> <li>0</li> <li>1</li> </ul> Tetapi [...]