My form looks like the following
<form class="search_results_section" method="post" name="MainForm" id="MainForm" action="/searchresults.asp" onsubmit="return OnSubmitSearchForm(event, this);">
<input type="hidden" name="Search" value="">
<input type="hidden" name="Cat" value="1856">
</form>
I want to get the "Cat" value of Hidden field in a Variable
I tried using the following but not sure why its not working
var elements =$('#jmenuhide input[name^="Cat"]').val();
alert(elements);
var ele=document.MainForm.getElementsByName('Cat').value;
alert(ele);
The alert says "undefined"
#jmenuhide? – gopi1410 Jul 12 '12 at 6:23