HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> </head> <body> <h1>jQuery callbacks.fireWith() Method</h1> <p>Click on the button and check your console.</p> <button>fireWith button</button> <script> $(document).ready(function(){ $("button").click(function(){ var callbacks = $.Callbacks(); callbacks.add(foo); callbacks.add(bar); callbacks.fireWith(this, ["hello"]); function foo(value){ console.log("You clicked : " +$(this).text()); console.log("foo : "+value); } function bar(value){ console.log("You clicked : " +$(this).text()); console.log("bar : " +value); } }); }); </script> </body> </html>
OUTPUT
×

Save as Private