Not exactly. The problem is that once the cookie is set, the AJAX content isn't imported, so there's no way to show it. What we can do is import it if it's not there, then we can show it.
Put this script in the head of your page after the scripts for Stay on Top content:
Code:
<script type="text/javascript">
alwaysOnTop.showAgain = function(targetid){
var s = alwaysOnTop.settingscache[targetid], $t;
if(!($t = jQuery('#' + targetid)).size()){
alwaysOnTop.loadajaxcontent(jQuery, s);
} else {
alwaysOnTop.positiontarget($t, s);
}
alwaysOnTop.revealdiv(jQuery('#' + targetid), s);
};
</script>
Now you can have a link like so:
Code:
<a href="#" onclick="alwaysOnTop.showAgain('ajaxdiv'); return false;">Show BC</a>
where ajaxdiv is the targetid that was used to init the content.
Bookmarks