This code shows the value of each class named with .button and alerts it to the page/
1 2 3 4 5 6 |
$(".button").each(function(){ //show all .buttons in page var myclass = $(this).attr('value'); alert(myclass); }); |
This code shows the value of each class named with .button and alerts it to the page/
1 2 3 4 5 6 |
$(".button").each(function(){ //show all .buttons in page var myclass = $(this).attr('value'); alert(myclass); }); |
© 2022 CODEHAVEN