I'm displaying an iframe (with a video in it) in a jQuery dialog box (http://jqueryui.com/demos/dialog/). There are two sizes of video I want to show. So, I'd like to have the dialog box come up with different height and width specs. depending on which link is clicked on the page.
The function that's making the dialog box pop up is in a php file that creates the HTML head. And that is...
jQuery(document).ready(function() {
jQuery("a.videobox").click(function(e) {
e.preventDefault();
var d = jQuery('<iframe src="' + this.href + '" />');
d.dialog({
title: this.title, // allow video title to be specified like this: '<a href="..." title="..." ...'
autoOpen: true,
width: 800,
height: 600,
modal: true,
resizable: true,
autoResize: true,
show: 'blind',
hide: 'explode',
open: function(event, ui) { jQuery('.ui-icon-closethick').html(''); } // remove the 'close' caption that overlaps with 'x' button
}).width("100%");
});
});
jQuery(document).ready(function() {
jQuery("a.videobox_smaller").click(function(e) {
e.preventDefault();
var d = jQuery('<iframe src="' + this.href + '" />');
d.dialog({
title: this.title, // allow video title to be specified like this: '<a href="..." title="..." ...'
autoOpen: true,
width: 500,
height: 300,
modal: true,
resizable: true,
autoResize: true,
show: 'blind',
hide: 'explode',
open: function(event, ui) { jQuery('.ui-icon-closethick').html(''); } // remove the 'close' caption that overlaps with 'x' button
}).width("100%");
});
});
So, I was thinking something like...
<a title="Bigger Size" href="bigger_video.html" class="videobox">Play the Bigger Video</a>
And...
<a title="Smaller Size" href="smaller_video.html" class="videobox_smaller">Play the Smaller Video</a>
But then onclick, the class would be set based on which link was clicked.
I don't know anything about javascript, so I have no idea about how to go about this. I also don't know if my suggested solution is feasible, but it's not working.
Thoughts? Thanks.
jquery-ui? – wanovak Jul 18 '11 at 17:07jQuery("a.videobox").click()andjQuery("a.videobox_smaller").click()under onejQuery(document).ready()– s.webbandit May 6 '12 at 5:36videoboxandvideobox_smallercss rules. – s.webbandit May 6 '12 at 5:37