javascript for getting value entered in textbox | XM Community
Solved

javascript for getting value entered in textbox

  • 6 July 2021
  • 1 reply
  • 310 views

Userlevel 5
Badge +11
  • QPN Level 5 ●●●●●
  • 78 replies

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

icon

Best answer by grahulp5 13 July 2021, 00:20

View original

1 reply

Userlevel 4
Badge +13

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

Leave a Reply