Skip to content

Commit 1c2c4ac

Browse files
authored
Add files via upload
1 parent 83a56b7 commit 1c2c4ac

File tree

2 files changed

+42
-0
lines changed

2 files changed

+42
-0
lines changed

#_ First notes.txt

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
2+
3+
JS - Jquery - JavaScript codes must be enclosed by <script> </script> tags
4+
_____________________________________________________________________
5+
6+
http://blog.jquery.com/2012/08/30/jquery-1-8-1-released/
7+
8+
Don�t use Quirks mode! jQuery has never supported Quirks mode and we do not perform any testing in Quirks.
9+
This can affect values like $("window").height(), and the jQuery 1.8 Quirks mode results did change in order to support some modern browser features.
10+
The majority of problem cases we�ve seen are from developers that wanted to be in Standards mode but had an invalid doctype or extraneous markup
11+
before their <html> tag. When in doubt, use the simple and short <!doctype html>.
12+
13+
14+
15+
16+
17+
18+
19+

1_ (jquery.js) vs (jquery.min.js).txt

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
2+
"jquery.min.js" is a compressed version of "jquery.js"
3+
4+
Both support the same functions. (In terms of functionality they are absolutely the same.)
5+
6+
"jquery.min.js":
7+
8+
- whitespaces and comments removed\stripped out,
9+
- shorter variable names,
10+
- preserve bandwidth.
11+
12+
"jquery.min.js" - It is recommended to use this compressed version in production environment.(websites)
13+
14+
"jquery.js" - It is recommended for developers, guys who needs to read, learn about or/and understand jquery codes
15+
16+
17+
18+
19+
20+
21+
22+
23+

0 commit comments

Comments
 (0)