[jQuery] Re: Get Value. Please, is kind of urgent. Thanks.

2010-01-12 Thread shapper
And is there a way to check if GBrowserCompatible is valid?

When I am not using google maps I don't load the Google maps script.
However this code is always present.

Thank You,
Miguel

On Jan 12, 8:13 pm, Nathan Klatt n8kl...@gmail.com wrote:
 Like so?

 if (GBrowserIsCompatible()) {
    var gmapsUrl = /Google/Map;
    if ($(#Place).val())
       gmapsUrl += /+$(#Place).val();
    $.getJSON(gmapsUrl, Initialise);

 }




Re: [jQuery] Re: Get Value. Please, is kind of urgent. Thanks.

2010-01-12 Thread Nathan Klatt
On Tue, Jan 12, 2010 at 3:42 PM, shapper mdmo...@gmail.com wrote:
 And is there a way to check if GBrowserCompatible is valid?

From http://www.idealog.us/2007/02/check_if_a_java.html:

if (typeof(yourFunctionName) == 'function') yourFunctionName();

Nathan