vote up 0 vote down star

I simply want to use the JQuery Slider functionality and nothing else.

However, to do so - it's my understnading that I must download 3 files:

  1. JQuery Core
  2. JQuery UI base
  3. JQuery Slider

This totals to about 74kb (28kb gzipped).

Since I'm ONLY using JQuery for the Slider functionality - how can I remove all the unused JQuery base code like the Toggle function, etc easily?

flag

3 Answers

vote up 3 vote down

Not easily.

Minified gzipped jQuery is only 19KB; it's not worth the effort.

For added performance, load jQuery.js from Google: http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js

link|flag
Is that 19kb gzipped or uncompressed? – Hank Nov 3 at 3:46
Is that 19kb gzipped or uncompressed but minified? – Hank Nov 3 at 3:48
That's gzipped. – SLaks Nov 3 at 3:48
vote up 1 vote down

It would be very difficult, but it is doable, as jQuery libraries build up on themselves, so you would need to go into each file and pull in all the functions that are needed into the slider javascript file, and eventually you should find all the functions that are needed.

But, it is so small that I don't see how you will really gain by doing this.

link|flag
vote up 0 vote down

The answer is ordinary no. If you are using plugin(s) of a Javascript framework, then naturally you will require to load in the core components (compressed or not).

link|flag

Your Answer

Get an OpenID
or

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