document.getElementById("checkbox-1").value()=true;
and
$("#checkbox-1").checked(true); $("#checkbox-1").attr("checked","checked");
the checkbox value i does not assign the value.
Finally i tried this I fixed. Its working
$("#checkbox-1").attr("checked",true).checkbox("refresh");
No comments:
Post a Comment