Código:
Cuando hago esto$(document).ready(function(){ $("img[width=100]").click(function() { xsrc = $(this).attr('src'); ident = $(this).attr('title'); }); }); $(document).ready(function(){ $("img[width=50]").click(function() { temp = ident; temp = '"img[title='+temp+']"'; $(temp).attr('src',function() {return xsrc;}); }); });
$(this).attr('src',function() {return xsrc;})
si funciona, pero cuando le paso un valor, en este caso temp
$(temp).attr('src',function() {return xsrc;})
no funciona.
lo he intentado de estas dos formas
Código:
y nada.temp = '"img[title='+temp+']"'; temp = "img[title="+temp+"]";
Les agradeceria su ayuda.