Hola señores, tengo un problema con Chrome, lo que pasa es que no detecta el evento click en el boton menu de mi web:
http://amdsoluciones.com/estudio1
Ya me tiene harto ya busque de todo y no encuentro el problema, probablemente será un problema de wordpress..
Ya probé con las versiones 1.7.1 y 1.6.4!
Miren mi código, y si tienen alguna idea me dicen por favor!
Código Javascript
:
Ver originaljQuery.noConflict();
jQuery(function ($) {
$().load("ajax-loading.gif");
var esvisible=false;
var bpage=$("#page");
var btnms=$("#mostrar span");
console.log("#mostrar.click()");
$("a#mostrar, #mostrar span, #mostrar b").click(function(evento){
evento.preventDefault();
if(esvisible==false){
$(this).html("<b>-</b>");
$("#page").animate({"left": "-980px"}, 200);
$(this).animate({width:"5px"}, 500, function(){
$("#page").animate({"left": "0px"}, 400);
$(this).animate({marginLeft: "0px"}, 400);
$("body").css({"height":"auto", "overflow":"auto"});
});
esvisible=true;
}else{
$(this).html("<b>+</b>");
$("#page").animate({"left": "-1064px"}, 400);
$("#page").animate({"left": "-980px"}, 350, function(){
$("#mostrar").animate({width:"65px"}, 400, function(){
esvisible=false;
$("body").css({"height":"100%", "overflow":"hidden"});
$("#mostrar").append(" menu");
$("#menues").fadeIn();
});
});
$(this).animate({marginLeft: "45px"}, 600);
}
});
var lnks=$("#bac-access a");
lnks.click(function(evento){
var este=this;
var contenido=$("#primary");
evento.preventDefault();
$(this).css({"background": "url(ajax-loader.gif) no-repeat right center #f5f5f5", "color":"#999"});
var hfre=$(this).attr("href")+ " #content";
contenido.load(hfre, function(resultado){
$(este).css({"background": "#f9f9f9", "color":"#666"});
window.location.hash="#"+hfre.substring(33, 150);
contenido.append(resutado);
});
});
var actual=1;var actualstr;
function derecha(){
if(actual<=0){
actual=3;
}
mostrar(actual);
actualstr="#img"+actual;
$(actualstr).stop().animate({"left": "-100%"}, 500, function(){
$(actualstr).css("left", "0%");
$(".myslider2").prepend($(this));
ocultar(actual);
actual--;
});
}
function izquierda(){
if(actual>=4){
actual=1;
}
actualstr="#img"+actual;
$(actualstr).stop().animate({"left": "100%"}, 500, function(){
$(actualstr).css("left", "0%");
$(".myslider2").prepend($(this));
actual++;
});
}
setInterval(function(){
derecha();
}, 5000);
$("#left").click(function(){
ocultar2(actual);
izquierda();
mostrar(actual);
});
$("#right").click(function(){
if(actual<=0){
actual=3;
}
ocultar2(actual);
derecha();
mostrar(actual);
});
function mostrar(numero)
{
var sel="#txt"+numero;
$(sel + " h1").stop().animate({opacity:"1.0", marginLeft: "0%"});
$(sel + " h2").stop().animate({opacity:"1.0", marginLeft: "0%"});
$(sel).show();
}
function ocultar(numero)
{
var sel="#txt"+numero;
setTimeout(function(){
$(sel + " h1").stop().animate({opacity:"0.0", marginLeft: "-25%"});
$(sel + " h2").stop().animate({opacity:"0.0", marginLeft: "25%"}, 500, function(){
$(sel).hide()});
}, 4000);
}
function ocultar2(numero)
{
var sel="#txt"+numero;
$(sel + " h1").stop().animate({opacity:"0.0", marginLeft: "-25%"});
$(sel + " h2").stop().animate({opacity:"0.0", marginLeft: "25%"}, 500, function(){
$(sel).hide();
});
}
});