hi guys, I have textboxes with textmode as multiline in my gorm.I have to apply css to that textboxes through jQuery.For that i used following script.
$(document).ready(function() {
$('input[type=textarea]').addClass("INPUT");
});
Is there any syntax problem in above script.Can anybody help ?