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 data() Method</h1> <div> We have <span></span> players to play <span></span> </div> <script> $(document).ready(function(){ $( "div" ).data( "test", { count: 11, game: "football" } ); $( "span:first" ).text( $( "div" ).data( "test" ).count ); $( "span:last" ).text( $( "div" ).data( "test" ).game ); }); </script> </body> </html>
OUTPUT
×

Save as Private