I have a Joomla site which uses Squeezebox which the default modal javascript for Joomla.
I've been using Squeezebox with template overrides. For example, I have a link that looks on every page that's part of the template override:
<a href="http://www.viddler.com/embed/cd1b1bc5/?f=1&autoplay=1&player=full&secret=104492144&loop=0&nologo=1&hd=1" class="modal vid-primary" rel="{url:'http://www.viddler.com/embed/cd1b1bc5/?f=1&autoplay=1&player=full&secret=104492144&loop=0&nologo=1&hd=1', handler: 'iframe', size: {x:741, y:459} }" style="display: block; position: relative;">
These links open a video in a modal.
What I need to do is to be able to open this video onLoad IF a URL parameter is present. For example:
http://mysite.com/page.html?vidload=vidload
So I need a router that will handle this. I found something close to what I'm after, but can't quite figure out how to make it work. Here's what I've got so far:
window.addEvent('domready', function() {
function popModal() {
SqueezeBox.open($('vid-primary'), {
handler: 'adopt'
});
}
var hash = window.location.hash;
if (hash.substring(1) == 'vidload') {
popModal();
}
});
Include Modal library in template override:
Use links like this:
More in Squeezebox Documentation and JHtml::_('behaviour.modal') options
Update: I think Adidi's answer below is what you are after. If you load MooTools More anyway, you may use URI class: