Music Psedo-Jukebox

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • benzojones
    New Member
    • Oct 2008
    • 1

    Music Psedo-Jukebox

    Need a script to put several songs on a web page.

    Song will have a description next to it and a button to play... if someone hits another button it should shut off other playing songs...etc.
  • acoder
    Recognized Expert MVP
    • Nov 2006
    • 16032

    #2
    What have you got so far?

    Comment

    • rnd me
      Recognized Expert Contributor
      • Jun 2007
      • 427

      #3
      you can do it without javascript:

      Code:
      <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
      <html xmlns="http://www.w3.org/1999/xhtml">
      <head>
      <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
      <title>Untitled Document</title>
      </head>
      
      <body>
      
      
      
      
      <iframe name='iframe1'  id='iframe1' src=''  frameborder='0' width="59%" height="9" >your browser cannot display inline frames</iframe>	
      
      <table id="ff1">
        <tbody>
          <tr>
            <td>Intro</td>
            <td><a href="http://www.archive.org/download/Gomez1999-10-01/gomez1999-10-01d1t01_64kb.mp3" target="iframe1">211 KB</a></td>
          </tr>
          <tr>
            <td>Get MySelf Arrested</td>
            <td><a href="http://www.archive.org/download/Gomez1999-10-01/gomez1999-10-01d1t02_64kb.mp3" target="iframe1">2.4 MB</a></td>
          </tr>
          <tr>
            <td>Hangover Girl</td>
            <td><a href="http://www.archive.org/download/Gomez1999-10-01/gomez1999-10-01d1t03_64kb.mp3" target="iframe1">2.4 MB</a></td>
          </tr>
          <tr>
            <td>Free To Run</td>
            <td><a href="http://www.archive.org/download/Gomez1999-10-01/gomez1999-10-01d1t04_64kb.mp3" target="iframe1">3.6 MB</a></td>
          </tr>
          <tr>
            <td>Las Vegas Dealer</td>
            <td><a href="http://www.archive.org/download/Gomez1999-10-01/gomez1999-10-01d1t05_64kb.mp3" target="iframe1">2.4 MB</a></td>
          </tr>
          <tr>
            <td>Here Comes The Breeze</td>
            <td><a href="http://www.archive.org/download/Gomez1999-10-01/gomez1999-10-01d1t06_64kb.mp3" target="iframe1">3.9 MB</a></td>
          </tr>
          <tr>
            <td>Rhythm &amp; Blues Alibi</td>
            <td><a href="http://www.archive.org/download/Gomez1999-10-01/gomez1999-10-01d1t07_64kb.mp3" target="iframe1">3.0 MB</a></td>
          </tr>
          <tr>
            <td>Love Is Better Than A Warm Trombone</td>
            <td><a href="http://www.archive.org/download/Gomez1999-10-01/gomez1999-10-01d1t08_64kb.mp3" target="iframe1">2.2 MB</a></td>
          </tr>
          <tr>
            <td>We Haven't Turned Around</td>
            <td><a href="http://www.archive.org/download/Gomez1999-10-01/gomez1999-10-01d2t01_64kb.mp3" target="iframe1">3.4 MB</a></td>
          </tr>
          <tr>
            <td>California</td>
            <td><a href="http://www.archive.org/download/Gomez1999-10-01/gomez1999-10-01d2t02_64kb.mp3" target="iframe1">5.4 MB</a></td>
          </tr>
          <tr>
            <td>Whippin Picadilly</td>
            <td><a href="http://www.archive.org/download/Gomez1999-10-01/gomez1999-10-01d2t03_64kb.mp3" target="iframe1">2.7 MB</a></td>
          </tr>
          <tr>
            <td>78 Stone Wobble</td>
            <td><a href="http://www.archive.org/download/Gomez1999-10-01/gomez1999-10-01d2t04_64kb.mp3" target="iframe1">4.6 MB</a></td>
          </tr>
          <tr>
            <td>Devil Will Ride</td>
            <td><a href="http://www.archive.org/download/Gomez1999-10-01/gomez1999-10-01d2t05_64kb.mp3" target="iframe1">4.3 MB</a></td>
          </tr>
        </tbody>
      </table>
      </body>
      </html>

      Comment

      Working...