I like a jQuery animation done on a website and I want to discover how they are doing it. Is it possible to inspect jQuery of a website you don’t own? What tool do I need?
Share
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.
Because javascript is interpreted on the client (the browser), it is viewable by looking at the source. It is often in the
<head>tag or at the bottom of the<body>tag, in a<script>tag. It is possible that the javascript is in a different file, which is indicated by thehrefattribute.It is possible however that the source is minified. This means that the variable names are replaced with really small names, like
a, and all the whitespace and comments are removed. This makes it a lot harder to read the source, but there are tools out there to format the script and make it more readable. You won’t get the variable names and comments back though.