$(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 headingOne = $("h1"); mascotClass = $(".mascot"); picture = $("img"); bodyElement = $('body'); // This is interesting. When the variables are placed here with no "var" keyword, they don't do anything. // When defined outside the jQuery function either with or without the "var" keyword, they return an empty // array. Here, no "var" keyword and it returns everything about the given selector. //RELEASE 2: // Add code hese to modify the css and html of DOM element $("h1").css({"color": "blue", "border": "2px solid black", "visibility": "visible" }) $("div h1").html("