Are you enjoying the extensions? Did you like the support? Help others decide.

Leave a review

file How to Set Plugin for Google Maps Autocomplete...

More
11 years 1 month ago - 11 years 1 month ago #2034 by admin
Please read the articles about jQuery on the site and follow the help links in the jQuery Easy plugin, it will clarify things.
In a nutshell: jQuery and MooTools conflict because they use the same '$' to function. Therefore, having both on the site, your browser does not understand which library to use.
MooTools has priority here. Therefore, jQuery needs to 'protect' its code.
So as a start, replace
$(function(){ ... }
with
jQuery(document).ready(function($) { ... }

Olivier.
Last edit: 11 years 1 month ago by admin.

Please Log in or Create an account to join the conversation.

More
11 years 1 month ago #2036 by pippopippo99
Ok, now run.
Thank you so much !!!!

Please Log in or Create an account to join the conversation.

More
11 years 1 month ago #2038 by admin
You are welcome!

Olivier.

Please Log in or Create an account to join the conversation.