c# - How to get the selected checkboxes which are dynamically generated using Jquery -


hi have page consists of dynamically generated checkboxes using razor code. need selected checkboxes using jquery. if there simple jquery achieve means suggest me.

you can check box status (checked/unchecked) in jquery this

$('[type="checkbox"]').each(function(){ alert($(this).is(":checked")) }); 

Comments

Popular posts from this blog

html5 - What is breaking my page when printing? -

html - Unable to style the color of bullets in a list -

c# - must be a non-abstract type with a public parameterless constructor in redis -