1

How to use this jquery function with vb.net :

This the function which add the checkbox checked value to textbox......

But i dont know how to use jquery function ?

<br>$('input:checkbox').click(function(){
    <br>var result = $(':checkbox:checked').map(function() {
      <br>return this.id;
    <br>}).get().join(',');

    <br>$('#myTextControl').val(result);
<br>});

1 Answer 1

1

$addHandler($get("input:checkbox"), "click");

Very good tutorials:

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.