Answers for "get all values in hidden field with the same name"

0

get all values in hidden field with the same name

<!--html-->
<input type="hidden" name="customerID" id="customerID1" value="aa190809" />
<input type="hidden" name="customerID" id="customerID2" value="aa190810" />
<input type="hidden" name="customerID" id="customerID3" value="" />

<script>
$("input[name=customerID]").each(function(){
    //get attributes
    console.log(this.id + " with value: " + this.value);
    
    //set values
    if (this.value == "") {
      this.value = "my new value";
    }
    
});
</script>
Posted by: Guest on November-25-2020

Code answers related to "get all values in hidden field with the same name"

Browse Popular Code Answers by Language