I would like to know if I can include some Jquery inside another JQuery function,
I'm changing the src attribute of the #ggMap item
onclick="$('#ggMap').attr('src', 'googleMap.php?x=690&y=390&address=');return false;"
and Thishis is what I'm trying to do:
onclick="$('#ggMap').attr('src', 'googleMap.php?x=690&y=390&address=$('#address').val();');return false;"
I want the value of #address to be included in the url.