Cita:
Iniciado por emprear las soluciones que te plantea la página que te indiqué son bastante claras, vamos a tomar tan solo una de ellas
Código HTML:
Ver original jQuery.noConflict();
// Put all your code in your document ready area
jQuery(document).ready(function($){
// Do jQuery stuff using $
$("div").hide();
});
// Use Prototype with $(...), etc.
$('someid').hide();
De acuerdo tu código, supongo que este sería el orden correcto
Código HTML:
Ver original jQuery.noConflict();
// Put all your code in your document ready area
jQuery(document).ready(function($){
$(".tabLink").each(function(){
$(this).click(function(){
tabeId = $(this).attr('id');
$(".tabLink").removeClass("activeLink");
$(this).addClass("activeLink");
$(".tabcontent").addClass("hide");
$("#"+tabeId+"-1").removeClass("hide")
return false;
});
});
});
// Use Prototype with $(...), etc.
// $('someid').hide();
<script type="text/javascript" src="js/calculate.js"></script>
<img src="<? echo DIR_WS_IMAGES .'icons/minus.png' ?>" onClick="changeQty('subtract');" />
<input name="quantity" type="text" class="moduleRow" id="quant" style="text-align:center" onKeyUp="changeQty('field');" value="1" size="4" maxlength="4" /> <img src="<? echo DIR_WS_IMAGES .'icons/plus.png' ?>" onClick="changeQty('add');" />
y es importante que calculate.js la cargues despues de prototype.js
SAludos
Lo hice tal como me dijiste, pero ahora no me funciona el script que incremente la cantidad por producto, o sea, solo funciona el script que cargo primero,
Gracias por tu ayuda