Hello.
Why this isn't true?
$('#myId') == document.getElementById("myId")
I'm using JQuery 1.4.2 and trying to insert a GMap into an div element.
So, this works:
new google.maps.Map(document.getElementById("myId"),myOptions);
but this doesn't
new google.maps.Map($("myId"),myOptions);