Have a say on what happens when users click stuff on your site:
$('#sexyPic').click(function() {
// Do stuff
});
Trigger a Click
You can also use the same method to trigger the click event on selected elements:
$('#nudePic').click();
Have a say on what happens when users click stuff on your site:
$('#sexyPic').click(function() {
// Do stuff
});
You can also use the same method to trigger the click event on selected elements:
$('#nudePic').click();
🔎 Searching...