Answers for "jquery click a tag"

46

jquery click function

$( "#target" ).click(function() {
  alert( "Handler for .click() called." );
});
Posted by: Guest on February-24-2020
2

jquery $(document.on click

$(document).on("click","#test-element",function() {});
Posted by: Guest on May-27-2020
0

jquery click

<script>
$(document).ready(function(){
    $("#btn-txt").click(function(){
    	var ptext = $("#my-para").text();
        alert(ptext);
    });
});
</script>
<button type="button" id="btn-txt">Get Text Content</button>
<p id="my-para">This is a paragraph to Show jQuery text method.</p>
Posted by: Guest on August-18-2021

Browse Popular Code Answers by Language