Andreas Haugstrup wrote:
> On Fri, 20 Jan 2006 14:48:38 +0100, David Meade <[EMAIL PROTECTED]>  
> wrote: 
> 
>>I do something like this one my site as well
>>(http://www.davidmeade.com) and I like the effect  ... I've got it
>>working with quicktime, windows media, and audio files.
> 
> But you're using javascript: links, which is troublesome (doesn't degrade  
> gracefully). Then you also have to create additional download links for  
> Feedburner and other spiders. It's exactly the attaching of an even on a  
> normal link I was having trouble getting to work in IE. I only spent ten  
> minutes on it so I'm sure it can be made to work in IE.

Can't you supply the real url but use an onclick handler? Then clients 
without Javascript can still get to it:

<a href="http://foo.com/"; onclick="window.open('http://foo.com/');return 
false">http://foo.com/</a>

or better (if it works for you):

<a href="http://foo.com/"; 
onclick="window.open(this.href)">http://foo.com/</a>

Take another look at the page Josh has:

   http://joshkinberg.com/popupmaker/

for some example code.

Let's make things valid and accessible if possible...


Pete

-- 
http://tinkernet.org/
videoblog for the future...




 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/videoblogging/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 


Reply via email to