public
Description: Miscellaneous small jQuery plugins
Homepage: http://onehackoranother.com/projects/jquery/jquery-grab-bag/
Clone URL: git://github.com/jaz303/jquery-grab-bag.git
jquery-grab-bag / index.html
100644 68 lines (56 sloc) 2.862 kb
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
<html>
  <head>
    <title>jQuery Grab Bag - Assorted jQuery Plugins</title>
    <link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="http://onehackoranother.com/feed/" />
    <link rel="alternate" type="text/xml" title="RSS .92" href="http://onehackoranother.com/feed/rss/" />
    <link rel="alternate" type="application/atom+xml" title="Atom 1.0" href="http://onehackoranother.com/feed/atom/" />
    <script type='text/javascript' src='javascripts/jquery-1.2.6.min.js'></script>
    <script type='text/javascript' src='javascripts/jquery.plugin.js'></script>
    <link rel="stylesheet" href="stylesheets/main.css" type="text/css" />
  </head>
  <body>
    <div id='container'>
      
      <h1>
        grab bag <span class='subtitle'>- assorted jQuery plugins</span>
      </h1>
      
      <div id='sidebar'>
        <ul id='project-nav'>
          <li><a href='index.html'>Plugin List</a></li>
        </ul>
        <ul id='ohoa-nav'>
          <li><a href='http://onehackoranother.com/feed/' id='subscribe'>Subscribe for updates &raquo;</a></li>
          <li><a href='http://onehackoranother.com/projects/'>Back to projects &raquo;</a></li>
          <li><a href='http://onehackoranother.com/'>Back to onehackoranother.com &raquo;</a></li>
        </ul>
      </div>
      
      <div id='main'>
        
        <h2>Overview</h2>
      
        <p>
          This is a small collection of single-file jQuery plugins I have extracted from various
          projects; see below for links to
          demos and documentation. Any requirements for supporting CSS rules are documented
          in the Javascript source files themselves.
        </p>
      
        <ul>
          <li><a href='autogrow-textarea.html'>Auto-growing textarea</a></li>
          <li><a href='cookie-text-size.html'>Cookie-based style switcher</a></li>
          <li><a href='dom-builder.html'>DOM builder</a></li>
          <li><a href='input-hint.html'>Input hint</a></li>
          <li><a href='rollover.html'>Rollover</a></li>
          <li><a href='text-effects.html'>Miscellaneous text effects - typewriter, unscramble, ROT13</a></li>
        </ul>
        
        <h2>Downloading</h2>
 
        <h3>copy 'n' paste</h3>
        <p>
          These plugins are too small to justify the whole package/distribute/release rigmarole so
          just head over the <a href='http://github.com/jaz303/jquery-grab-bag/tree/master/'>github
          repository</a>, browse, copy and paste.
        </p>
 
        <h3>clone from github</h3>
        <pre class='shell'><span class='green'>jason@oreo</span> <span class='blue'>~ $</span> git clone git@github.com:jaz303/boxy.git</pre>
        
      </div>
      
    </div>
  </body>
</html>