From 802f2972239c21148d692b7784d90a4036bbd91c Mon Sep 17 00:00:00 2001 From: Hollyw00d Date: Tue, 9 Jun 2015 08:13:37 -0700 Subject: [PATCH 1/6] added gitignore file to disregard phpstorm idea files --- .gitignore | 79 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 79 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..25f7ae5 --- /dev/null +++ b/.gitignore @@ -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 From e94a8923055339f895550af07ee874085dba4077 Mon Sep 17 00:00:00 2001 From: Hollyw00d Date: Tue, 9 Jun 2015 08:25:47 -0700 Subject: [PATCH 2/6] jquery syntax errors fixed, trying to get jquery hover function to work --- debugging_jquery.html | 32 +++++++++++++++++++++++--------- 1 file changed, 23 insertions(+), 9 deletions(-) diff --git a/debugging_jquery.html b/debugging_jquery.html index bd2a95c..8125716 100644 --- a/debugging_jquery.html +++ b/debugging_jquery.html @@ -5,22 +5,36 @@ + From 2f8ea0a4b3bcd98e1cd1fbdee9ab5280c8d147a6 Mon Sep 17 00:00:00 2001 From: Hollyw00d Date: Tue, 9 Jun 2015 08:45:06 -0700 Subject: [PATCH 4/6] everything done except for two h5 and button click functions --- debugging_jquery.html | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/debugging_jquery.html b/debugging_jquery.html index 0ac87a4..8ec42be 100644 --- a/debugging_jquery.html +++ b/debugging_jquery.html @@ -16,11 +16,8 @@ } ); - - - - - $('a').click(function(){ + $('a').click(function(e){ + e.preventDefault(); alert("we don't actually serve pizza..."); }); @@ -28,14 +25,16 @@ $(this).slideUp(); }); - $('h5').click(function(){ - $('img').slideDown(); - }); - $('button').click(function(){ - var result = $('input:checked').value() - alert("Thank you for your input, we like " + result + " too!"); - }); + +// $('h5').click(function(){ +// $('img').slideDown(); +// }); + +// $('button').click(function(){ +// var result = $('input:checked').value(); +// alert("Thank you for your input, we like " + result + " too!"); +// }); }); From 9974769dd6062fc623ddd78047be652995154cf8 Mon Sep 17 00:00:00 2001 From: Hollyw00d Date: Tue, 9 Jun 2015 08:47:27 -0700 Subject: [PATCH 5/6] h5 click funct done --- debugging_jquery.html | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/debugging_jquery.html b/debugging_jquery.html index 8ec42be..6f620f2 100644 --- a/debugging_jquery.html +++ b/debugging_jquery.html @@ -26,10 +26,9 @@ }); - -// $('h5').click(function(){ -// $('img').slideDown(); -// }); + $('h5').click(function(){ + $('img').slideDown(); + }); // $('button').click(function(){ // var result = $('input:checked').value(); From ba03898cb8c773e7cad07ccd43001076e2d83843 Mon Sep 17 00:00:00 2001 From: Hollyw00d Date: Tue, 9 Jun 2015 08:51:17 -0700 Subject: [PATCH 6/6] button click funct done, assgnmnt done --- debugging_jquery.html | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/debugging_jquery.html b/debugging_jquery.html index 6f620f2..355fef1 100644 --- a/debugging_jquery.html +++ b/debugging_jquery.html @@ -30,11 +30,10 @@ $('img').slideDown(); }); -// $('button').click(function(){ -// var result = $('input:checked').value(); -// alert("Thank you for your input, we like " + result + " too!"); -// }); - + $('button').click(function(){ + var result = $('input:checked').val(); + alert("Thank you for your input, we like " + result + " too!"); + }); });