lessthan selector in jQuery with example
Less Than selector returns a list of element with index less than specified index.
Example :
<html>
<head>
<title>less Selector</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"> </script>
<script type="text/javascript">
$(document).ready(function()
{
$("#myButton").click(function()
{
$("ul li:lt(2)").css({'font-size':'20px','background-color':'Orange'});
});
});
</script>
</head>
<body>
<ul type="square">
<li>Cesc Fabregas</li>
<li>Thierry Henry</li>
<li>Lionel Messi</li>
<li>Ronaldinho</li>
<li>Zinedine Zidane</li>
</ul>
<button id="myButton">Click Me</button>
<button onclick="location.reload()">Reset</button>
</body>
</html>
Demo :
In the above example, we have used less than selector. Less Than selector select a list of elements with the index less than specified index. In above example, it selects the list elements with index less than 2 and applies CSS to it.
0 comments:
Post a Comment