Skip to content

Commit d77679e

Browse files
author
sdeering
committed
inital repo commit
0 parents  commit d77679e

File tree

184 files changed

+8232
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

184 files changed

+8232
-0
lines changed

404page.php

Lines changed: 129 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,129 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<!-- Copyright jQuery4u 2011 - All code written by Sam Deering -->
5+
6+
<meta charset="utf-8">
7+
<title>404 Function Not Found</title>
8+
9+
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
10+
11+
<!-- styles -->
12+
<link href="css/bootstrap.css" rel="stylesheet">
13+
<link href="css/style.css" rel="stylesheet">
14+
<link href="css/shCoreDefault.css" rel="stylesheet">
15+
16+
<!-- HTML5 shim, for IE6-8 support of HTML elements -->
17+
<!--[if lt IE 9]>
18+
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
19+
<![endif]-->
20+
21+
<!-- fav and touch icons -->
22+
<link rel="shortcut icon" href="images/favicon.ico">
23+
</head>
24+
25+
<body>
26+
27+
<!-- Top Bar -->
28+
<div class="topbar">
29+
<div class="topbar-inner">
30+
<div class="container-fluid">
31+
<a class="brand" href="http://www.jquery4u.com/">JQUERY4U FUNCTION DEMOS</a>
32+
<ul class="nav">
33+
<li><a href="http://www.jquery4u.com/">Blog</a></li>
34+
<li><a href="http://www.jquery4u.com/demos/">Showcase</a></li>
35+
<li class="active"><a href="http://www.jquery4u.com/">Function Demos</a></li>
36+
</ul>
37+
<!-- Social -->
38+
<p class="pull-right social-icons">
39+
<a target="_blank" href="http://facebook.com/pages/Jquery4u/140918675956744" title="Facebook Fans"><img src="http://www.jquery4u.com/images/facebook.png" alt="Join us on facebook"></a> <a target="_blank" href="http://twitter.com/jquery4u" title="Twitter Followers"><img src="http://www.jquery4u.com/images/twitter.png" alt="Follow us on Twitter"></a> <a target="_blank" href="http://www.jquery4u.com/feed/rss/" title="RSS Subscribers"><img alt="Subscribe to our RSS Feed" src="http://www.jquery4u.com/images/rss.png"></a>
40+
</p>
41+
</div>
42+
</div>
43+
</div>
44+
45+
<div class="container-fluid">
46+
<div class="sidebar">
47+
48+
<!-- BUYSELL ADS -->
49+
50+
<!-- Side Menu -->
51+
<div class="well">
52+
<h5>Animations & Effects</h5>
53+
<ul>
54+
<li><a href="animate/">.animate()</a></li>
55+
<li><a href="setinterval/">setInterval()</a></li>
56+
<li><a href="settimeout/">setTimeout()</a></li>
57+
<li><a href="slidetoggle/">.slideToggle()</a></li>
58+
<li><a href="fadetoggle/">.fadeToggle()</a></li>
59+
<li><a href="delay/">.delay()</a></li>
60+
</ul>
61+
<h5>DOM Manipulation</h5>
62+
<ul>
63+
<li><a href="css/">.css()</a></li>
64+
<li><a href="addclass/">.addClass()</a></li>
65+
<li><a href="toggleclass/">$.toggleClass()</a></li>
66+
<li><a href="html/">.html(), .text()</a></li>
67+
<li><a href="append/">.append()</a></li>
68+
<li><a href="clone/">.clone()</a></li>
69+
</ul>
70+
<h5>AJAX</h5>
71+
<ul>
72+
<li><a href="ajax/">$.ajax()</a></li>
73+
<li><a href="getjson/">$.getJSON()</a></li>
74+
<li><a href="getscript/">$.getScript()</a></li>
75+
<li><a href="load/">.load()</a></li>
76+
<li><a href="jsonp/">JSONP</a></li>
77+
</ul>
78+
<h5>Events</h5>
79+
<ul>
80+
<li><a href="bind/">.bind()</a></li>
81+
<li><a href="live/">.live()</a></li>
82+
<li><a href="delegate/">.delegate()</a></li>
83+
<li><a href="preventdefault/">.preventDefault()</a></li>
84+
<li><a href="stoppropagation/">.stopPropagation()</a></li>
85+
<li><a href="stopimmediatepropagation/" style="font-size: 11px;">.stopImmediatePropagation()</a></li>
86+
</ul>
87+
<h5>Traversing & Data</h5>
88+
<ul>
89+
<li><a href="each/">$.each(), .each()</a></li>
90+
<li><a href="data/">$.data()</a></li>
91+
<li><a href="match/">.match()</a></li>
92+
<li><a href="find/">.find()</a></li>
93+
<li><a href="filter/">.filter()</a></li>
94+
<li><a href="slice/">.slice()</a></li>
95+
<li><a href="next/">.next(), .prev()</a></li>
96+
<li><a href="extend/">$.extend()</a></li>
97+
<li><a href="serializearray/">$.serializeArray()</a></li>
98+
</ul>
99+
</div>
100+
101+
</div>
102+
<div class="content">
103+
104+
<!-- Main hero unit for a primary marketing message or call to action -->
105+
<div class="hero-unit">
106+
<h1>Function Not Found</h1>
107+
</div>
108+
109+
<!-- GOOGLE ADS -->
110+
111+
<div class="row">
112+
113+
<!-- Description -->
114+
<div class="span12" style="width:90%">
115+
<p><img src="images/404-duh.png" /></p>
116+
<p>The Clueless Coding Monkey!</p>
117+
</div>
118+
119+
</div>
120+
121+
<!-- Footer -->
122+
<footer>
123+
<p>&copy; JQUERY4U 2011</p>
124+
</footer>
125+
</div>
126+
</div>
127+
128+
</body>
129+
</html>

README.md

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
** 50 jQuery Function Demos **
2+
3+
This repo contains the entire code listing of the demos for my Smashing Magazine post <a href="http://coding.smashingmagazine.com/2012/05/31/50-jquery-function-demos-for-aspiring-web-developers/">50 Useful jQuery Function Demos For Your Projects</a>.
4+
5+
** Big Social Impact (as at 11/10/2013) **
6+
7+
1,322 Facebook Shares
8+
1,559 Tweets
9+
549 Delicious Bookmarks
10+
310 Google Plus Shares
11+
326 LinkedIn Shares
12+
127 comments
13+
14+
** Function URL List **
15+
16+
AJAX
17+
http://www.jquery4u.com/function-demos/ajax/
18+
http://www.jquery4u.com/function-demos/getjson/
19+
http://www.jquery4u.com/function-demos/getscript/
20+
http://www.jquery4u.com/function-demos/load/
21+
http://www.jquery4u.com/function-demos/jsonp/
22+
23+
Animations & Effects
24+
http://www.jquery4u.com/function-demos/animate/
25+
http://www.jquery4u.com/function-demos/setinterval/
26+
http://www.jquery4u.com/function-demos/settimeout/
27+
http://www.jquery4u.com/function-demos/slidetoggle/
28+
http://www.jquery4u.com/function-demos/fadetoggle/
29+
http://www.jquery4u.com/function-demos/delay/
30+
31+
DOM Manipulation
32+
http://www.jquery4u.com/function-demos/css/
33+
http://www.jquery4u.com/function-demos/addclass/
34+
http://www.jquery4u.com/function-demos/toggleclass/
35+
http://www.jquery4u.com/function-demos/html/
36+
http://www.jquery4u.com/function-demos/append/
37+
http://www.jquery4u.com/function-demos/clone/
38+
39+
Events
40+
http://www.jquery4u.com/function-demos/bind/
41+
http://www.jquery4u.com/function-demos/live/
42+
http://www.jquery4u.com/function-demos/delegate/
43+
http://www.jquery4u.com/function-demos/preventdefault/
44+
http://www.jquery4u.com/function-demos/stoppropagation/
45+
http://www.jquery4u.com/function-demos/stopimmediatepropagation/
46+
47+
Traversing & Data
48+
http://www.jquery4u.com/function-demos/each/
49+
http://www.jquery4u.com/function-demos/data/
50+
http://www.jquery4u.com/function-demos/match/
51+
http://www.jquery4u.com/function-demos/find/
52+
http://www.jquery4u.com/function-demos/filter/
53+
http://www.jquery4u.com/function-demos/slice/
54+
http://www.jquery4u.com/function-demos/next/
55+
http://www.jquery4u.com/function-demos/extend/
56+
http://www.jquery4u.com/function-demos/serializearray/
57+
58+
** Updates & Pull Requests **
59+
60+
I would like to get these functions up to date and working with the latest versions of jQuery so please fork and submit pull requests so we can make this happen.

0 commit comments

Comments
 (0)