Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
79 changes: 79 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
# Code editor files
.idea/

# CVS and SVN directories
CVS
.svn

# Useless Windows Files
Thumbs.db
desktop.ini
ehthumbs.db
Desktop.ini
$RECYCLE.BIN/
*.cab
*.msi
*.exe
*.msm
*.msp
._*
*~
*.bak

# Images
*.png
*.gif
*.jpg
*.bmp
*.svg




# =========================
# Operating System Files
# =========================

# OSX
# =========================

.DS_Store
.AppleDouble
.LSOverride

# Icon must end with two \r
Icon


# Thumbnails
._*

# Files that might appear on external disk
.Spotlight-V100
.Trashes

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk
23.235.47.133


# WordPress and Directories files
/blogs.dir
/old*
advanced-cache.php
wp-cache-config.php
sitemap.xml
sitemap.backup.xml
.log
/cache
/uploads
/upgrade
/backup-db
/crayon-syntax-highlighter
/wp-content/plugins/crayon-syntax-highlighter
/images
/img
37 changes: 23 additions & 14 deletions debugging_jquery.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,31 +2,40 @@
<head>
<title>jQuery</title>
<link rel="stylesheet" type="text/css" href="debugging_jquery.css">
<script type="text/javascript" src='http://code.jquery.com/jquery-1.10.2.min.js'></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script type="text/javascript">

$('p, h3, li').hoverfunction(){
$(this).css('color', 'white');
}, function(){
$(this).css('color', 'black');
});

$('a').click(function(){
$(function() {

$('p, h3, li').hover(
function() {
$(this).css('color', 'white');
},
function() {
$(this).css('color', 'black');
}
);

$('a').click(function(e){
e.preventDefault();
alert("we don't actually serve pizza...");
});

$('img').click(function(){
$(this).slideUp();
);
$('img').click(function() {
$(this).slideUp();
});


$('h5').click(function(){
$('img').slide Down();
$('img').slideDown();
});

$('button').click(function(){
var result = $('input:checked').value()
var result = $('input:checked').val();
alert("Thank you for your input, we like " + result + " too!");
});
});

});

</script>
</head>
Expand Down