I can access the cache via jQuery.Cache method.

But I want to access it in pure JavaScript.
I dont want to use the jQuery command $.cache
I need the translation the pure JS command
How can I do it ?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
$is just an object that takes advantage of the fact the the dollar sign is legal in a JS identifier.Hence
$.cacheis a property of that$object, itself being another object.So, you can access
$.cache[n]from plain Javasript, because that’s exactly what it is!