Does anyone have experience / insight re: decoupling jquery / sizzle?
this is for general interest, but here's the scenario that triggered my question:
..i already have jquery in the project. wanted to try out http://ecsstender.org/, which requires the Sizzle selector engine. I dont really want to include a 2nd copy of Sizzle - its already part of jquery ..
- would rather do something like this: http://forum.jquery.com/topic/further-decoupling-sizzle-and-jquery
- e.g. create a jquery build that depends on an external, rather than embedded, version of Sizzle - so the same Sizzle lib can be used by jquery, eccstender, or other scripts.
Seems a good idea. Although I guess it could hurt performace, and I would want to see benchmarking comparisons against the jQuery production release..
Does anyone know if this has been done ? (github fork?) Or is there a good reason against this approach? .