View Single Post
  #5  
Old 06-10-2009, 03:29 PM
pepito
Guest
 
Posts: n/a
Default

I inserted the lines as you tolded me and now the home page doesn´t work what can I do??? The lines in red are the ones I inserted at the begining of line 9

jQuery(document).ready(function(){
hideContent = function(contentString){
jQuery("div.dynamicContent").fadeOut( 1000 ,function() {
showContent(contentString);playSound(0);
});
};
if (contentString.indexOf("http") != -1)
{
location.href=contentString;
return true;
}

showContent = function (contentString) {
jQuery.ajax({
type: "GET",
url: contentString,
dataType:"html",
success: function(data){
jQuery("div.dynamicContent").html(data);
jQuery("div.dynamicContent").slideDown(1000);
},
error: function () {
alert("Page "+contentString+" not found");