zdravím, mám script který v overlay otevře novou stránku.. vše funguje jak má .. pokud ale před link dám jiný link s jinou hodnotou rel tak už to nejde.. čím to?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<head>
<link rel="stylesheet" type="text/css" href="http://static.flowplayer.org/tools/css/standalone.css"/>
<script src="http://cdn.jquerytools.org/1.1.2/full/jquery.tools.min.js"></script>
<link rel="stylesheet" type="text/css" href="http://static.flowplayer.org/tools/css/overlay-apple.css"/>
<script>
$(function() {
// if the function argument is given to overlay,
// it is assumed to be the onBeforeLoad event listener
$("a[rel]").overlay({
expose: 'darkred',
effect: 'apple',
onBeforeLoad: function() {
// grab wrapper element inside content
var wrap = this.getContent().find(".contentWrap");
// load the page specified in the trigger
wrap.load(this.getTrigger().attr("href"));
}
});
});
</script>
</head>
<body>
<!-- když tenhle link odstraním nebo jej dám až za ten další link tak to funguje jak má, já jej ale potřebuju mít před ním :/-->
<a href="test2.html" rel="#no-overlay">test2</a>
<a href="test.html" rel="#overlay">test</a>
<div class="apple_overlay" id="overlay">
<div class="contentWrap"></div>
</div>
</body>