Realmente no sé donde postear esto, pero lo expongo aquí porque el error es en el caso de Javascript.
Tengo una Web desarrollada para un cliente y en sólo un ordenador, en cualquier navegador que utilize ocurre lo siguiente
Cualquiera de los 3 navegadores que he utlizado en el mismo equipo, lo que hace es que incluye directamente en el código fuente el código de jQuery
Código:
/*!
* jQuery JavaScript Library v1.7.1
* http://jquery.com/
*
* Copyright 2011, John Resig
* Dual licensed under the MIT or GPL Version 2 licenses.
* http://jquery.org/license
*
* Includes Sizzle.js
* http://sizzlejs.com/
* Copyright 2011, The Dojo Foundation
* Released under the MIT, BSD, and GPL Licenses.
*
* Date: Mon Nov 21 21:11:03 2011 -0500
*/
(function( window, undefined ) {
// Use the correct document accordingly with window argument (sandbox)
var document = window.document,
navigator = window.navigator,
location = window.location;
var jQuery = (function() {
// Define a local copy of jQuery
var jQuery = function( selector, context ) {
// The jQuery object is actually just the init constructor 'enhanced'
return new jQuery.fn.init( selector, context, rootjQuery );
En cambio, en cualquier otro ordenador el código que figura y es el que realmente está publicado es el siguiente
Código:
<script src="lib/jquery-1.7.1.js" type="text/javascript" language="javascript"></script>