How to disable the Input,textarea,selector using this code in the Fieldset
- by kumar
Hello friends I am using this code in my view..
$("#Fieldset1").find("input, select,textarea").attr('disabled', 'disabled');
this code i am in one view...for one user only one time...if I select 3 users this view will execute three times.. using this code I can able to disable inputfor one one time. its not doing for second time that is second user on the page.
why its happening? I need to disable for how many users I select....
thanks..