« mini music browser inside a page | Main | Magnatune street billboards »
Magnatune for small-screen devices
I've made a miniature browser of the magnatune catalog, for small-screen devices that want to listen to Magnatune. The small-screen interface to Magnatune is at this url:http://magnatune.com/minibrowse/
This is also a handy music browser if you want to keep Magnatune up on the screen at all times in a small browser window.
Posted by John Buckman on May 27, 2006 at 01:10 AM | Permalink
Comments
That's really slick. I'd like to use it as a Bookmarklet, but I can't find your JS. That link above simply opens a new browser window which then opens the small player. Can we do it without first opening a blank window?
Posted by: Topher at May 28, 2006 12:41:24 PM
You can either just point your web browser to http://magnatune.com/minibrowse/ or try your copy this javascript if you want a popup window:
<a target="mini" href="javascript:void(win=window.open('http://magnatune.com/minibrowse/',%20'Magnatune Mini Browser',%20'width=400,height=300,resizable=yes,scrollbars=yes,menubar=no,status=no'))">
http://magnatune.com/minibrowse/
</a>
Posted by: John Buckman at May 28, 2006 10:49:31 PM
fwiw, you might prefer to do something like this:
<a href="http://magnatune.com/minibrowse/" onClick="window.open('http://magnatune.com/minibrowse/','mini','width=400,height=300,resizable=yes,scrollbars=yes,menubar=no,status=no');return false;">
http://magnatune.com/minibrowse/
</a>
(I'm not sure that the code you posted will work in IE, and it may open an extra window -- this modified code should work with IE & FF, should only open the mini window, and should still work if you right-click the link)
-Scott
Posted by: Scott Matthews at May 29, 2006 9:44:28 AM
