помогите преобразовать javascript в jquery
Здравствуйте, очень нужна помощь.
Есть javascript функции :
geocoder.geocode( { 'address': options.address }, function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {
map.setCenter(results[0].geometry.location);
marker.setPosition(results[0].geometry.location);
}
});
google.maps.event.addListener(marker, 'click', function() {
infowindow.open(map,marker);
});
помогите их преобразовать в jquery.
после переноса кода из обычного скрипта javascript в плагин jquery эти функции не отрабатывают. большая просьба помочь.
|