javascript for getting value entered in textbox | XM Community
Skip to main content

I want to write a code that can extract the first name from the form field first name and store it in a variable called fname using javascript

jQuery('input[type="text"]').eq(0).val(); //update '0' to the row no starting from 0.


Leave a Reply