Answers for "dynamic select paragraph id using javascript"

0

dynamic select paragraph id using javascript

<input type="text" value="1" id="thisIsAnId1" />
 <input type="text" value="2" id="thisIsAnId2" />
 <input type="text" value="3" id="thisIsAnId3" />
 <Script>
 $("[id*=thisIsAnId]").each(function() {
 this.style.color = "blue";
 });
 </Script>
Posted by: Guest on November-30-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language