Usually this type of error will come whenever you are using jquery in your application.
The root cause of this error is ” Adding multiple versions of jquery library to your application“.
So, the solution to the above problem is “Remove multiple versions of jquery library”.
Note: Sometimes you will be surprised like, you added some version library like 1.8 in your jsp, html…etc.
but still you are getting this error, because if you are using any existing template the basic jsp/html is already loaded with other version of jquery.
So, try to look at the template related jsp/html pages carefully.
If you are using Mozilla firefox add Firebug extension to your browser. After adding activate firebug and try to refresh the page where you are getting this error, then firebug will show you which version of jquery library your jps/html page is accessing.
Locate that version , and either remove that version of jquery library, or your page jquery library.
The root cause of this error is ” Adding multiple versions of jquery library to your application“.
So, the solution to the above problem is “Remove multiple versions of jquery library”.
Note: Sometimes you will be surprised like, you added some version library like 1.8 in your jsp, html…etc.
but still you are getting this error, because if you are using any existing template the basic jsp/html is already loaded with other version of jquery.
So, try to look at the template related jsp/html pages carefully.
If you are using Mozilla firefox add Firebug extension to your browser. After adding activate firebug and try to refresh the page where you are getting this error, then firebug will show you which version of jquery library your jps/html page is accessing.
Locate that version , and either remove that version of jquery library, or your page jquery library.