Ver Mensaje Individual
  #5 (permalink)  
Antiguo 09/08/2009, 12:51
4valdes
 
Fecha de Ingreso: diciembre-2007
Mensajes: 31
Antigüedad: 16 años, 11 meses
Puntos: 0
Respuesta: Error al iniciar varios Javascript

ya lo encontre muchas gracias por la pista
he aqui la solucion
www punto forosdelweb punto com/f127/conflicto-entre-jquery-prototype-652248/

jQuery.noConflict();
(function($){
$(document).ready(function(){
$("#jQuery").html( "LOAD jQuery!" );
});
})(jQuery);

Event.observe(window, 'load', function() {
$("Prototype").innerHTML = "LOAD Prototype!";
});