Support

Account

Home Forums Backend Issues (wp-admin) Programmatically update google map field in admin Reply To: Programmatically update google map field in admin

  • Hi,

    Hm okay. Could you try this instead:

    
    var e = jQuery.Event("keypress");
    e.which = 13; //choose the one you want
    e.keyCode = 13;
    $("#theInputToTest").trigger(e);
    

    And to clarify, your address is filled in to the input field correctly? I mean, you see the address added? Are you just filling it with GPS coordinates or an actual address?