Plugin

Table Pager

I wanted to do this a long time ago but I had no time. This is a simple jquery plugin that add a pager to any html table you want. 

Demo

This is the table header
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30

How to use

$(".table-pager").addTablePager();
or
$(".table-pager").addTablePager({results : 5, position : "top"});

Simple tooltip - jQuery plugin

A few weeks ago I needed to display a tooltip for a field in a form. There are lots of jQuery plugins for that but I just needed a simple one. I wanted to display a message on mouseover. Since I thought it is very easy to do it myself, I started to work on it. After a few minutes, it was ready.

Demo

Display tooltip on mouseover

How to use

$("#some-element").simpletooltip()
or
$("a.some-class").simpletooltip()

Syndicate content