I have downloaded a minimized jquery plugin file and need to do some customization as per my project requirements. I am using Visual Studio 2010. And because the file is minimized, it is becoming very difficult to debug it or perform any modifications. Is there a way i can reformat the js file?
Thanks
You can use jsbeautifier.org for javascript beautification. It also decode Dean Edward's packer.
Also in Visual Studio you can use this shortcut: ctrl+K, ctrl+D
You should be able to reformat javascript in Visual Studio. Open the javascript file, and select Edit | Advanced | Format Document or Format Selection.
You can add the formatting back by going to http://jsfiddle.net, pasting the code into the javascript pane, and then clicking
Tidy Up
at the top.