Reputation: 15006
I'm using a plugin for jQuery. It works great in webkit, but when I try it in firefox I get the following firefox error:
google.maps.Geocoder is not a constructor
$('.to, .from').geo_autocomplete(new google.maps.Geocoder, {
Here is all the jquery:
$('.to, .from').geo_autocomplete(new google.maps.Geocoder, {
mapkey: 'ABQIAAAAbnvDoAoYOSW2iqoXiGTpYBT2yXp_ZAY8_ufC3CFXhHIE1NvwkxQNumU68AwGqjbSNF9YO8NokKst8w',
selectFirst: false,
minChars: 3,
cacheLength: 50,
width: 235,
scroll: true,
scrollHeight: 330
});
What's a constructor and howcome firefox is pointing it out to me?
http://dev.resihop.nu is the site
Upvotes: 2
Views: 694
Reputation: 163248
A constructor is the function (which returns an object of the function name's type) that is invoked when you use new
in conjunction with that function's name, such as:
function Person(name, age) {
//blah
}
var me = new Person("Jacob", 20);
Upvotes: 6
Reputation: 536389
Any native function may be called as a constructor (even if it wasn't designed to be). Anything that's not callable also cannot be a constructor. eg new 3
gives the same error.
In your page, google.maps.Geocoder
is simply undefined
, which certainly isn't going to help. Looking at Google's maps script it's failing to load the Geocoder module because it's using document.write
to do so, a method that has to be run from a <script>
included in the HTML document at parse time, not imported by use of DOM scripting as you're doing here.
It certainly doesn't expect to be run from a page loaded via client-side XSLT. This is going to give you lots of browser problems and zero SEO presence. What is the purpose of this craziness?
Upvotes: 5
Reputation: 32258
When you instantiate an object, e.g. create an instance of an object, the constructor is the first method that is called within your object.
When you're calling
new google.maps.Geocoder
...you are attempting instantiate a parameterless constructor of the object by using the new keyword. In this case, Geocoder is not a class that can be instantiated without parameters, or at all.
Upvotes: 1
Reputation: 2420
You msut use google.maps.geocoder like this:
$('.to, .from').geo_autocomplete(new google.maps.Geocoder({
mapkey:'ABQIAAAAbnvDoAoYOSW2iqoXiGTpYBT2yXp_ZAY8_ufC3CFXhHIE1NvwkxQNumU68AwGqjbSNF9YO8NokKst8w',
selectFirst: false,
minChars: 3,
cacheLength: 50,
width: 235,
scroll: true,
scrollHeight: 330
}));
Upvotes: 1