Answers for "get value of div with jquery"

2

get value of div jquery

--- DIV ---
<div class="none product-id"> 4 </div>
=> $('.product-id').text().trim();

--- INPUT ---
<input type="text" class="form-control product-number" value="1">
=> $('.product-number').val();
Posted by: Guest on September-30-2021
0

jquery get value of element

// Get the value from id thisElement
$("#thisElement"). val();
Posted by: Guest on September-16-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language