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 proxy() Method</h1> <button>Get Detail</button> <p></p> <script> $(document).ready(function(){ var obj = { name: "Jade", age: 18, detail: function(){ $("p").text(this.name + " is " + this.age + " years old."); } }; $("button").click($.proxy(obj, "detail")); }); </script> </body> </html>
OUTPUT
×

Save as Private