Mi sitio utiliza jQuery 1.4.2. El problema es .replaceWith()
no funciona en IE6 & IE7 en jQuery 1.4.2. ¿Existe un método alternativo compatible con IE6 & IE7 en jQuery 1.4.2?jQuery .replaceWith() alternar
El violín está aquí: http://jsfiddle.net/8CEwf/1/
lo sé, no lo parezca jQuery está unida a ella, pero si nos fijamos en el HTML, el jQuery es allí desde jsFiddle no ofrece la versión 1.4.2
HTML:
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<img src="/v/vspfiles/templates/cyberfront/images/buttons/btn_addtocart_small.gif">
<input type="image" src="/v/vspfiles/templates/cyberfront/images/buttons/btn_go_gray.gif">
<img src="/v/vspfiles/templates/cyberfront/images/Bullet_MoreInfo.gif">
Guión:
$(document).ready(function(){
$('img[src="/v/vspfiles/templates/cyberfront/images/buttons/btn_addtocart_small.gif"]').replaceWith('<br /><span id="blackbutton" class="mediumbutton" style="display:block;">Add to Cart</span>');
$('input[src="/v/vspfiles/templates/cyberfront/images/buttons/btn_go_gray.gif"]').replaceWith('<input type="submit" class="graybutton smallbutton" name="Go" alt="Go" value="Go" title="Go">');
$('img[src="/v/vspfiles/templates/cyberfront/images/Bullet_MoreInfo.gif"]').replaceWith('<span class="learnmore">Learn More</span>');
});
¡Trabajos! Gracias. – henryaaron
No puedo modificar las páginas centrales ... por eso estoy pasando por todo este obstáculo. – henryaaron
@ user1090389: Ah, eso tiene sentido. ¡Bueno, buena suerte! :) – Purag