
Basic jQuery Text/Image Rotator
Barusan Saya menemukan kode bagus di sini: Creating a Text Rotator with jQuerySangat sederhana dan mudah dipahami. Sebuah fungsi jQuery slider dasar untuk merotasikan sekelompok elemen di dalam konta…

Plugin jQuery Accordion Sederhana
Plugin /** * Simple jQuery Accordion Plugin * Author: Taufik Nurrohman * Date: 8 June 2012 * https://plus.google.com/108949996304093815163/about */ (function($) { $.fn.accordion = function(settings) …

jQuery Custom Select Box
Pembaharuan: Posting ini sudah usang. Cek versi plugin-nya di sini jQuery // Iterate over each select element $('select').each(function() { // Cache the number of options var $this = $(this), number…

Squirrel & Peanut · CSS Pagination
Desain elemen halaman berupa navigasi angka yang terispirasi dari tokoh kartun Flying Squirrel. Bentuk setiap item navigasi menggambarkan bahwa mereka adalah kacang-kacang pohon yang sangat disukai o…
JavaScript Auto Expand Textarea
Versi Dasar function expandTextarea(id) { document.getElementById(id).addEventListener('keyup', function() { this.style.overflow = 'hidden'; this.style.height = 0; this.style.height = this.scrollHeigh…