1. <!DOCTYPE html>
2. <body>
3. <head>
4. <html>
1. View Page Info
2. Inspect Element
3. Developer Tools
1. append
2. attribute
3. click
4. css
5. text
1. <a href="http://www.google.com">Google</a>
2. <a src="http://www.google.com">Google</a>
3. <a name="Google">http://www.google.com</a>
4. <link href="http://www.google.com">Google</link>
5. <link src="http://www.google.com">Google</link>
6. <link name="Google">http://www.google.com</link>
1. <a href="http://www.google.com">Google</a>
img { width: 100px; }
<img src="someImage.jpg">
Here's some HTML:
<p>Old text</p>
What will it look like after running the following jQuery expression?
$("p").text("New text");
1. HTML defines the _______ of the page.
2. CSS defines the _______ of the page.
3. JavaScript defines the _______ of the page.
1. structure
2. style
3. behavior
1. <img href="image.gif">
2. <image url="image.gif">
3. <img>image.gif</img>
4. <img src="image.gif">
4. <img src="image.gif">
<img class="largeImages" src="pic1.jpg">
<img class="largeImages" id="second" src="pic2.jpg">
<img id="third" src="pic3.jpg">
#second { width: 200px; }
<h1>ScriptEd</h1>
1. $("p").attr("blue", "color");
2. $("p").attr("color", "blue");
3. $("p").css("blue", "color");
4. $("p").css("color", "blue");
p ( color - blue )
1.Uses parentheses instead of curly-braces.
2. Uses "-" instead of ":" between color and blue.
3. No semi-colon after blue.
1. HTML stands for ______
2. CSS stands for ______
1. HyperText Markup Language
2. Cascading Style Sheets
Write a jQuery expression that will change this link to go to "http://harlemvillageacademies.org/"
<a href="http://www.google.com">Best site ever</a>