Monday, February 13, 2012

Change HTML elements using jQuery

Change HTML elements using jQuery
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Mobile-Web-App: jQuery</title>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.6.4.min.js"></script>

<style>
.italic-red{
font-style: italic;
color: red;
}
</style>

<script>
$(document).ready(
function(){
$("#title").text("Mobile-Web-App");
$("#title").addClass("italic-red");
});
</script>

</head>
<body>

<p id="title">* jQuery is a new kind of JavaScript Library *</p>
<p id="desc1" class="desc">jQuery is a fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development.</p>
<p id="desc2" class="desc">jQuery is designed to change the way that you write JavaScript.</p>

</body>
</html>


Related:
Change HTML elements using html() can also specify HTML tags.

No comments:

Post a Comment