layout switcher ปรับหน้าจอตามขนาดหน้าจอได้ ย่อขยายได้
$(document).ready(function(){ stylesheetToggle(); $(window).resize(stylesheetToggle); }); function stylesheetToggle() { if($('body').width()>900){ $('<link rel="stylesheet" href="wide.css" type="text/css" />') .appendTo('head'); }else{ $('link[href="wide.css"]').remove(); } } body #container { width: 850px; } body #container p { width: 650px;…
custom scrollbar
$(document).ready(function(){ $('#fine_print').jScrollPane({ verticalGutter:20 }); });
สร้างปุ่มเลื่อนขึ้นบน page scroll
$(document).ready(function(){ $('a[href=#]').click(function(e){ // เลือก a ที่มี href=# $.scrollTo(0,'slow'); e.preventDefault();//code หลังจากนี้จะไม่ทำงานเอาไว้หยุดคำสั่งอื่นของโค้ดในหน้านัน้ }); });