Example:
<script>
$(document).ready(function(){
$(".ClassName").each(function () {
//any thing which you want to perform
alert($(this).text());
});
});
</script>
<script>
$(document).ready(function(){
$(".ClassName").each(function () {
//any thing which you want to perform
alert($(this).text());
});
});
</script>
0 comments:
Post a Comment