vote up 0 vote down star

Hi

I am using jquery and I got a couple plugins that don't offer a minified version. So I want to take the full version and minfiy it but all the sites I have found that you input your javascript and it minifies it breaks the plugin.

Like it must strip something out because I get a syntax error.

So anyone got a good one that I can use?

flag

69% accept rate

6 Answers

vote up 0 vote down check

If you're familiar with Java you could also use YUI compressor to minify JS (and CSS) files yourself. We use it here as well and it works great.

link|flag
Ya I found this and it seems to work when I set the minify option and preserver semi coloumns – chobo2 Nov 5 at 22:16
vote up 0 vote down

That shouldn't happen with minification. Perhaps try minifying the files separately?

link|flag
I am minfiying them separately. The ones I am looking at you have to paste in your code and then it spits out a minified version. – chobo2 Nov 5 at 5:32
vote up 0 vote down

It could be because one or more files don't have a trailing semi-colon, which is usually fine but I think causes problem on minification. Alternatively you may have issues with regex literals. What minifier are you using?

link|flag
I tried this one, minifyjavascript.com/index.php and another one but forgot the link. – chobo2 Nov 5 at 5:31
vote up 0 vote down

If you are minfying the plugins as separate files, the process may be renaming a symbol that is part of the jQuery API, because the minifier is not aware of the interaction.

link|flag
I just copy and paste the javascript code into the box and hit generate. So maybe thats what it is doing. – chobo2 Nov 5 at 5:31
vote up 0 vote down

Javascript Compressor Rater

I believe it runs the js through rhino and outputs any errors found before hand, and after you can choose the one that works best for you.

link|flag
vote up 0 vote down

ASP.net team published a free tool that enables you to improve the performance of your Ajax applications by reducing the size of its JavaScript files. The new tool is named the Microsoft Ajax Minifier. Deatails here: Deatails about Ajax Minifier

Download it here Download link

link|flag
I will check it out. I found YUI compressor and that seems to work but don't like the command line interface – chobo2 Nov 5 at 22:16

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.