I have use jquery & bootstrap in jsp page. I need to set value c:set tag using jquery/JavaScript. Here is my c:set tag:
<c:set var="dialog_uomid_c" />
Here is my JavaScript function I tried but value is not set
function setValue(){
$("#dialog_uomid_c").val("Test");
}
Please help me set up value to dialog_uomid_c from function setValue