Skip to content

Instantly share code, notes, and snippets.

@nextechu
Created March 29, 2014 22:10
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<div>
<div id="div1">My div with id attribute of div1</div>
<div class="required">Here is the second message</div>
<span>Here is the third message</span>
</div>
<script src="Scripts/jquery-2.1.0.js"></script>
<script>
$(document).ready(function () {
// we'll put our code here
alert('page ready');
// Id selector
$("#div1").css("backgroundColor", "pink");
// Class selector
$(".required").css("border", "dashed 2px red");
// Element selector
$("span").css("color", "purple");
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment