Monday, November 4, 2013

Published 1:18 AM by with 0 comment

google translator

.skiptranslate { display:none !important; visibility:hidden !important; } .lang { cursor:pointer; } $(document).ready(function () { $('.lang').on('click', function () { $.cookie('googtrans',$(this).attr('lang')); ...
Read More
    email this       edit

Friday, November 1, 2013

Published 4:21 AM by with 1 comment

Simple pagination using http://flaviusmatis.github.io/simplePagination.js

$(document).ready(function () { var itemsOnPage = 3; $('#paging').pagination({ items: $('#content > div').length, itemsOnPage: itemsOnPage, cssStyle: 'light-theme', onPageClick: function (pageNumber, event) { var pageN = pageNumber != 0 ? (pageNumber - 1) : pageNumber; ...
Read More
    email this       edit