Hallo Community,
ich versuche ein Tool von mir, welches auf der Google Api basiert, asynchron in div zu parsen. Das Ganze funktioniert soweit auch, jedoch funktionieren die Infoboxen nicht. Mein Code sieht so aus :
Ich bekomme von der Javascriptconsole die Meldung : infobox.open is not a function
Hoffe mir kann jemand weiterhelfen und mein Problem nachvollziehen.
ich versuche ein Tool von mir, welches auf der Google Api basiert, asynchron in div zu parsen. Das Ganze funktioniert soweit auch, jedoch funktionieren die Infoboxen nicht. Mein Code sieht so aus :
PHP-Code:
$.get('http://tool.com', function(result)
{
$result = $(result);
}, 'html').done(function( data )
{
$("#div_content").append(data);
$(document).ready(function()
{
$.ajax({ url: "http://google-maps-utility-libraryv3.googlecode.com/svn/tags/infobox/1.1.9/src/infobox.js"
dataType: "script"
}).done(function() {
loadScriptFunc('https://maps.googleapis.com/maps/api/js?v=3.exp&signed_in=true&callback=initialize');
});
});
});
function loadScriptFunc(url, callback)
{
alert(callback);
// Adding the script tag to the head as suggested before
var head = document.getElementsByTagName('head')[0];
var script = document.createElement('script');
script.type = 'text/javascript';
script.src = url;
// Then bind the event to the callback function.
// There are several events for cross browser compatibility.
script.onreadystatechange = callback;
script.onload = callback;
// Fire the loading
head.appendChild(script);
}
Ich bekomme von der Javascriptconsole die Meldung : infobox.open is not a function
Hoffe mir kann jemand weiterhelfen und mein Problem nachvollziehen.
Kommentar