Reputation: 91
I am implementing a JQuery Lightbox on a website I'm working on. The same set of codes work very well in localhost, but when I transfer the codes to my server, I get this error concerning the lightbox. Uncaught TypeError: Object function Object() { [native code] } has no method 'extend'
. I have no idea what error this signifies.
Also I only have jQuery lib on the page.
here is the page I'm working on mypage
Please help me.
Update
I added <script>jQuery.noConflict();});</script>
within <head></head>
of html..in between jquery lib and lightbox script link. But still not working.
Thanks
Upvotes: 0
Views: 546
Reputation:
Working well, you may try to reupload lightbox.css to fix alignment issue.
Upvotes: 1
Reputation: 4022
A lot of times that error happens when a dependent script is missing. It can also happen if you are using multiple libraries besides jQuery.
Upvotes: 1