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 offset() Method</h1> <p>Try to click on the button multiple times.</p> <button>Click Me</button> <script> $(document).ready(function(){ $("button").click(function(){ var x = $("p").offset(function(index, myOffset){ newPos = new Object(); newPos.left = myOffset.left + 50; newPos.top = myOffset.top + 50; return newPos }); }); }); </script> </body> </html>
OUTPUT
×

Save as Private