Imagine that the website has the #button1 element that jQuery is viewing:
$('#button1').click(function(){ console.log("you clicked"); };
So how do I push this element #button1 through the JavaScript console? Is there a command like click("#button1") ? Thanks.
javascript jquery console
user3719693
source share