Here is the javascript file http://www.zaarly.com/anywhere.js I'm calling Zaarly.Anywhere.open({title : 'iPad', description : 'An iPad', time : '6h', price : 200, mapCenter : 'San
Solution 1:
Zaarly.Anywhere.open() is undefined
According to that error message, Zaarly.Anywhere.open()
does not have any properties. In fact, it's undefined
.
So, you have to look for Zaarly.Anywhere.open().xxxxx
in your code, and remove/adjust .xxxxx
, depending on the context.
Post a Comment for "Calling Javascript Function From Onclick Event"