I have a table that contains several text box and buttons.I disable my table using jquery by this code:
$("#tbl").attr("disabled", "disabled");
my table become disabled but when I double click on the button it become enable and I can enter characters in my text box too. How I can Disable all control inside a table?
thanks
You must traverse and disable all relevant elements.