user12592511
user12592511

Reputation:

What is maximum charachters that can be set in Value attribute of a hidden HTML input element?

<input type="hidden" value="12345">

I need to set value="12345" attribute to the size of 5,000 characters. What is a max characters I can set this attribute to when using POST method to send a form? Is it limited by the maximum POST method?

Upvotes: 1

Views: 630

Answers (1)

jcklopp
jcklopp

Reputation: 491

It depends if you are using the POST or GET method for your form action.

More comprehensive answers are already available such as here: What is the maximum length of a URL in different browsers?

Upvotes: 1

Related Questions