I'm using visural-wicket's fancy box (http://wicket.visural.net/examples/app/fancybox) to display some YouTube videos on my site. Basicly the HTML looks like this:
<a href="#" class="playButtonClass" id="playButton" wicket:id="iframe"></a>
...(some other divs)
<a href="#" wicket:id="iframe2"><img class="imgClass" src="img.png" /></a>
As you can see only difference is that one is a hyperlink (in my case with fixed width/height and background img) and second one is hyperlink with img. The first one works good and gives really nice looing fancy box like in an example. The second one instead of making a fancy box, redirects to youtube video on full screen. What might be the problem? Java code looks like this:
public class MyWebPage extends WebPage {
private static final String YOUTUBE_LINK = "someYoutubeVideoLinkHere";
public MyWebPage() {
add( new Fancybox( "iframe", YOUTUBE_LINK ).setWidth( 560 ).setHeight( 315 ) );
add( new Fancybox( "iframe2", YOUTUBE_LINK ).setWidth( 560 ).setHeight( 315 ) );
}