CodePaste Logo
New Snippet New Snippet Recent Snippets Recent Snippets My Snippets My Snippets Web Code Search Snippets Search
Sign inor Register
Language: JavaScript

ASP Jquery Disable item witch Checkbox

240 Views
Copy Code Show/Hide Line Numbers
//Disable Textbox
    $('#<%=CommentCheckBox.ClientID%>').click(function() {
        if ($("#<%=CommentCheckBox.ClientID%>").attr('checked'))
            $("#<%=CommentTextBox.ClientID%>")
                .val("U heeft er voor gekozen geen opmerkingen te plaatsen")
                .toggleClass('disabled')
                .attr("disabled", "disabled").blur();
        else
            $("#<%=CommentTextBox.ClientID%>")
                .val("")
                .toggleClass('disabled')
                .removeAttr("disabled").blur();
    });
by Arjan
  April 03, 2010 @ 4:14am
Tags:

Add a comment


Report Abuse
brought to you by:
West Wind Techologies



If you find this site useful and use it frequently please consider making a donation to support this free service.
Donate