I'm trying to display a HTML block, using jQuery if a checkbox is checked. All works fine, until I submit the form (it displays form errors based on server-side rules)
Sayfayı görüntülerken Ancak, HTML blok tekrar gizlidir.
Form gönderildiğinde 'show' de HTML blok devlet tutmak nasıl?
Ben şu kullanıyorum:
$(document).ready(function(){
//Hide div w/id extra
$(".test").css("display","none");
// Add onclick handler to checkbox w/id checkme
$("#yes").click(function(){
// If checked
if ($("#yes").is(":checked"))
{
//show the hidden div
$(".test").show("fast");
}
else
{
//otherwise, hide it
$(".test").hide("fast");
}
});
});