Introduction:
Here I will explain how to use jQuery
to select particular checkboxes selected based on name or jquery select checkbox by name or how to make particular checkboxes selected with name in jQuery.
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 runat="server">
<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. |
|||
|
|||
2 comments :
Dear Sir,
Your website is very useful for me. I need one sample from you.
I want to show images from database in datalist control (thumbnail) and once i hover the image the image display in same page by bigger size.
I have already bind images from database into datalist based on your samples.
Now i want to display the image in same page when i hover the thumbnail image.
Please upload this sample.
@vetri.....
check this article http://www.aspdotnet-suresh.com/2012/09/show-large-image-preview-when-hover-on.html
Note: Only a member of this blog may post a comment.