Web Development

Get JavaScript Framework Version

Now a days we are having numbers of JavaScript frameworks and we are getting updates from various Java Scripts on daily basis in terms of version numbers.

Here we are going to see how we can get Version number of JavaScript framework you have used in your website. I have listed method for four leading frameworks which are as below:

Get jQuery Version

[cc lang=”javascript”]
console.log($().jquery);
console.log($.fn.jquery);
[/cc]

Get MooTools Version

[cc lang=”javascript”]
console.log(MooTools.version);
[/cc]

Get ProtoType Version

[cc lang=”javascript”]
console.log(Prototype.Version);
[/cc]

Get Dojo Version

[cc lang=”javascript”]
console.log(dojo.version);
[/cc]

Feel free to add another JavaScript framework which is not listed above.

Shares:
  • d'leedon price
    d'leedon price
    February 1, 2013 at 11:12 pm

    I must admit, you have the gift of a fabulous writer. Don’t ever stop!

    Reply
  • d'leedon price
    d'leedon price
    December 20, 2019 at 2:55 pm

    I must admit, you have the gift of a fabulous writer. Don’t ever stop!

    Reply
  • shimthecoder
    February 12, 2013 at 10:41 am

    thank you so much this is really helpful

    Reply
  • shimthecoder
    December 20, 2019 at 2:55 pm

    thank you so much this is really helpful

    Reply

Leave a Reply

Your email address will not be published. Required fields are marked *