Share Pastebin
Guest
Public paste!

Untitled

By: a guest | Mar 22nd, 2010 | Syntax: HTML | Size: 0.69 KB | Hits: 104 | Expires: Never
This paste has a previous version, view the difference. Copy text to clipboard
  1. <!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'>
  2. <html xmlns='http://www.w3.org/1999/xhtml' lang='en' xml:lang='en'>
  3. <head>
  4.  
  5. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>
  6. <script type="text/javascript" src="jquery.jplayer.min.js"></script>
  7.  
  8. <script type = 'text/javascript'>
  9. $(document).ready(function(){
  10.  
  11.         $("#jquery_jplayer").jPlayer({
  12.             customCssIds: true
  13.         });
  14.         $("#jquery_jplayer").jPlayer( "setFile", "music.mp3" );
  15.         $("#jquery_jplayer").jPlayer("play");
  16.  
  17. });
  18.  
  19. </script>
  20.  
  21. </head>
  22. <body>
  23.  
  24.  
  25. <div id="jquery_jplayer"></div>
  26.  
  27. </body>
  28.  
  29. </html>