Are you searching for how do I check if an element is hidden in jQuery? If yes, then this example for you. Since the question refers to a single element, this code might be more suitable:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | <html> <head> <title>jQuery Selector</title> <script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function() { $("#button1").click(function(){ var visible = $('#myElement').is(':visible'); if(visible) { alert("input element is visible"); } else { alert("input element is hidden"); } }); }); </script> </head> <body> <input type="text" id="myElement" style="display:block;"/> <button id="button1">Check Visibility</button> </body> </html> |
If you like this question & answer and want to contribute, then write your question & answer and email to freewebmentor[@]gmail.com. Your question and answer will appear on FreeWebMentor.com and help other developers.