Toggle the class 'highlight' when a paragraph is clicked. : CSS « jQuery « JavaScript DHTML
- JavaScript DHTML
- jQuery
- CSS
Toggle the class 'highlight' when a paragraph is clicked.
<html>
<head>
<script type="text/javascript" src="js/jquery-1.3.2.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("p").click(function () {
$("p").toggleClass("highlight");
});
});
</script>
<style>
.selected { color:red; }
.highlight { background:yellow; }
</style>
</head>
<body>
<body>
<p class="selected highlight">Hello</p>
</body>
</html>
Related examples in the same category