I want to pass in a jQuery command (in the form of a string) from server-side JS to client-side js. This allows me to modify client-side DOM stuff from the server-side.
Function:
$("textArea").attr("disabled","true");
What I want to do:
$['$("textArea").attr("disabled","true")']();
Throws an error. Thoughts?