Skip to content

Instantly share code, notes, and snippets.

@jordanbas
Forked from dbc-challenges/jquery_example.html
Last active August 29, 2015 13:57
Show Gist options
  • Save jordanbas/9591387 to your computer and use it in GitHub Desktop.
Save jordanbas/9591387 to your computer and use it in GitHub Desktop.
Intro to jQuery for Phase 0
<!DOCTYPE html>
<html>
<head>
<title>DOM manipulation with jQuery</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript" src="jquery_example.js"></script>
</head>
<body>
<h1> Hello. Welcome to the jQuery DOM Manipulation Challenge! </h1>
<div class="mascot">
<h1> My DBC Mascot </h1>
<img src="http://ebmedia.eventbrite.com/s3-s3/eventlogos/28578437/4809359925-1.png">
</div>
</body>
</html>
$(document).ready(function(){
//RELEASE 0:
//Link this script and the jQuery library to the jquery_example.html file and analyze what this code does.
$('body').css({'background-color': 'pink'})
//RELEASE 1:
//Add code here to select elements of the DOM
var bodyElement = $('body');
var headings = $( ":header" )
var mascotStyle = $( ".mascot" )
//RELEASE 2:
// Add code here to modify the css and html of DOM elements
headings.css({color: "blue", border: "2px solid black", visibility: "initial"})
$( "h1:contains('Mascot')").html("My Fiddler Crabs Mascot")
//RELEASE 3: Event Listener
// Add the code for the event listener here
$('img').on('mouseover', function(e) {
e.preventDefault()
$(this).attr('src','http://2.bp.blogspot.com/-JXdSrHoMR18/T9sxLkOJtkI/AAAAAAAAAZc/aNlkvHcZAso/s1600/fiddler-crab.jpg')
})
$('img').on('mouseleave', function(e) {
$(this).attr('src','http://ebmedia.eventbrite.com/s3-s3/eventlogos/28578437/4809359925-1.png')
})
//RELEASE 4 : Experiment on your own
$('img').css({border: "2px sold blue"})
$('img').css({border: "2px solid black"})
$('img').click(function() {
$('img').animate({
borderWidth: "10px",
height: "200",
}, 3000, function() {
})
})
}) // end of the document.ready function: do not remove or write DOM manipulation below this.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment