Existe-t-il une fonction jQuery qui renvoie la version de jQuery actuellement chargée?
Réponses
Trop de publicités?Vous pouvez utiliser ceci:
$.fn.jquery
//or if you're using .noConflict():
jQuery.fn.jquery
Il est mis à jour automatiquement lors de la construction de jQuery, défini ici: http://github.com/jquery/jquery/blob/master/src/core.js#L174
Assurez-vous d'utiliser $.fn.property
pour les propriétés qui ne dépendent pas d'un objet, aucune raison de créer un objet jquery inutile avec $().property
sauf si vous avez l'intention de l'utiliser :)
meder
Points
81864
user113716
Points
143363
Faisal
Points
1939
$().jquery; // yields the string "1.4.2", for example
Source: http://jquery-howto.blogspot.com/2009/02/how-to-check-jquery-version.html
Josiah
Points
1764