finds tag/class/id the table/page Using Jquery <script> $(document).ready(function() { $(“.table”).find(“span”).css({“color”:”blue”}); }); </script>
Read MoreTag: find() in jquery
How to find an element or tag using Jquery
The HTML is here: <table class=”table”> <caption>My testing Table</caption> <tr> <td class=””><span>data-1</span></td> <td>data-2</td> </tr> <tr> <td>data-3</td> <td><span>data-4</span></td> </tr> </table> The Script is: // ONLINE JQUERY …
Read More