Being a bit of a javascript/jQuery noob, I've run into a problem that I can't find a solution for.
I have a function that grabs some parameters from the url and replaces elements. All good. I also have instances of FancyBox on the page.
It semms something in my getUrlVars function is killing FancyBox. If I load FancyBox first in the document ready, it just loads the larger pic into a new browser window, like a regular link. If I grab the URL vars and let them do their thing before loading FancyBox, the links do nothing at all.
I've tried running both in isolation and they work perfectly, until I try to run them both.
Here's the getUrlVars script...
function getUrlVars()
{
var vars = [], hash;
var hashes = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&');
for(var i = 0; i < hashes.length; i++)
{
hash = hashes[i].split('=');
vars.push(hash[0]);
vars[hash[0]] = hash[1];
}
return vars;
}
var salesname = getUrlVars()["agent"];
var salesname = unescape(salesname);
var vendor = getUrlVars()["vendor"];
var vendor = unescape(vendor);
var position = getUrlVars()["position"];
var position = unescape(position);
$('h1:contains("thisiswherethevendorgoes")').html( '<span class = "fade-in one"> <strong>Prepared for ' + vendor + '</strong></span>');
$("body").html($("body").html().replace(/salesname/g, salesname + ', ' + position));
});
Before or after (I've tried every permutation) I setup FancyBox...
$("a#fbs").fancybox({
'opacity' : true,
'overlayShow' : true,
'transitionIn' : 'elastic',
'easingIn' : 'easeInCirc',
'transitionOut' : 'elastic',
'easingOut' : 'easeOutCirc',
'speedIn' : 500,
'speedOut' : 250
});
Both have to run (I think?) inside $(document).ready(function() {
Any clues? Any and all suggestions much appreciated.
