JQUERY: Get and Set Form Input Values

Miva Knowledge Base
Want to start an online store? We work with you from start to finish, from commerce platform to design to SEO.
Experience counts, and we have a lot.
Important Notice: This information is for internal reference only. Use at your own risk.

JQUERY: Get and Set Form Input Values

Scot Ranney • December 22, 2023


Super easy. Get and Set input values with Jquery is almost the same. 

Getter:

var title = $('#doc_title').val();

Setter:

$('#doc_title').val('this is a new title);

https://www.scotsscripts.com/mvblog/jquery-get-and-set-form-input-values.html

mvkb_jquery