jQuery Get Hidden field value: Here in this tutorial will learn how we can get values of the hidden filed. As jQuery is a powerful javascript library by using which we can manipulate HTML DOM easily. In jQuery to get hidden field value we use.val()
method.
The .val()
method is used to get the values of form elements such as input, select, textarea. You can also check our previous article how to set hidden field value in jQuery.
jQuery Code: Get hidden field value
var getValue= $("#HiddenFieldID").val();
alert(getValue);
That's it you just need to change the hiddenFieldId respectively and with .val() method you get the value of your hidden field. Make sure ID attributes should be unique on a web page.
Here in demo example on button click, we alert hidden field value.
Other Reference
You can also check these articles:
Post Comment
Your email address will not be published. Required fields are marked *