+2  A: 

I don't think the authors of that file want you to be able to read it for study...

I don't think that's the issue here, it's merely minified.
deceze
+1 you might have truth here, but then it wouldn't hurt to ask.
lexu
@deceze: I'm slowly learning that subtlety is not appreciated on this site...
Without generous use of further meaning enhancing tokens (otherwise known as smileys), subtlety in a forum frequented by engineer types is tough… ;o)))
deceze
+4  A: 

Ask for the code.

Go to the site and find out who runs/develops it then send him/her an email politely asking for the non obfuscated code.

lexu
A generally excellent sentiment, so +1. Though, I doubt they will give the code in this case...
A: 

I think the js file has been minified... You can't get what it says from a minified one...

Pandiya Chendur
A: 

You need a de-obfuscator to bring it back to something readable. They exist and are great tools to have. Whether you should use them is a different question altogether.

+1  A: 

Minified code like this one has shortened variable names. The original, useful, variable names and all of the JS comments are gone from this version of the JS.

There are plenty of code-beautifiers which will indent code for you (IIRC Dreamweaver has one but I don't remember offhand if it understands JavaScript) but indentation alone will not be enough to make the code of any value to read.

David
A: 

You can use a javascript beautifier tool such as this one to format the code, which makes it much easier to read.

Erik Vold