0

I am building control that uses last version of jstree. Problem is that whole system is build using jQuery 1.3.2, but i need to use jQuery 1.4.2 for jstree, also to prevent errors need "$" still pointing to jQuery 1.3.2 to make system works normally. I tried to solve problem like this

var jq142 = jQuery.noConflict(true);

And it works, but when i added other control to form like "datepicker" that initialized via $("#id").datepicker it throws error $("#id").datepicker is not a function

When i inspect DOM variables through firebug all is ok - $ is pointing to 1.3.2 and datepicker function is registered.

What it can be?

Thanks

4
  • What specifically is preventing you from just using the higher 1.4.2 version? Commented Feb 11, 2011 at 16:47
  • it is impossible because a lot of features will be dead. I tried))) Commented Feb 11, 2011 at 16:49
  • have you looked at this. web.enavu.com/daily-tip/… Commented Feb 11, 2011 at 16:53
  • 1
    Problem was not solved, we decide to migrate to jQuery 1.4* Thanks for replies Commented Feb 14, 2011 at 17:00

1 Answer 1

1

in case anyone came to this by looking for unanswered questions, the answer was to simply upgrade to 1.4.*

btw: jQuery 1.7 has just been released... time to upgrade again ;-)

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.