Introduction:
Here I will explain how to use jQuery
to make particular checkboxes in selected mode based on name or or jQuery to select / checked
checkboxes with Name.
Description:
In previous articles I explained jQuery Get Set Delete Cookie example, jQuery Show gridview row details on mouseover, jQuery Create simple mobile website, jQuery use split function to split string, jQuery get multiple checked checkbox values and many
articles relating to JQuery,
JavaScript, asp.net,
code snippets. Now I will explain how to make particular
checkboxes selected with name in jQuery.
Make
Particular checkboxes selected with name jQuery
To make particular checkboxes selected based on name we
need to write the code like as shown below
var str = '1,3,6,7';
var splitstring = str.split(',');
for (var i = 0; i <
splitstring.length; i++) {
$('input[name="chkdetails"][value="'
+ splitstring[i] + '"]').attr("checked", true);
}
|
If you want to see it in
complete example check below code
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Make Checkboxes selected based on json string values Page</title>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.8.2.js"></script>
<script type="text/javascript">
$(function()
{
var str = '1,3,6,7';
var splitstring = str.split(',');
for (var i = 0; i <
splitstring.length; i++) {
$('input[name="chkdetails"][value="'
+ splitstring[i] + '"]').attr("checked", true);
}
});
</script>
</head>
<body>
<div>
<label> <input type="checkbox" name="chkdetails" value="1" />
Chennai </label>
<label> <input type="checkbox" name="chkdetails" value="2" />
Hyderabad </label>
<label> <input type="checkbox" name="chkdetails" value="3" />
Delhi </label>
<label> <input type="checkbox" name="chkdetails" value="4" />
Bangalore </label>
<label> <input type="checkbox" name="chkdetails" value="5" />
Mumbai </label>
<label> <input type="checkbox" name="chkdetails" value="6" />
Guntur </label>
<label> <input type="checkbox" name="chkdetails" value="7" />
Chennai </label>
</div>
</body>
</html>
|
Live
Demo
|
If you enjoyed this post, please support the blog below. It's FREE! Get the latest Asp.net, C#.net, VB.NET, jQuery, Plugins & Code Snippets for FREE by subscribing to our Facebook, Twitter, RSS feed, or by email. |
|||
|
|||
0 comments :
Note: Only a member of this blog may post a comment.