post php with modal dialog within a linked tab page

post php with modal dialog within a linked tab page


I'm having issues posting within a linked tab page with a modal
dialog. Anybody have any ideas or having issues with this? The page
with the tabs has ui javascript and jquery reference. The tab is set
to a linked page. The linked page has modal dialog and in the dialog
button event I try to post to email contact info. It just fails at
the $.post like it doesn't even recognize the call. Here is the post
event I'm testing after validation in the modal dialog form:
$.post("sendemail.php", {emailTo: "post@post.com", emailFrom:
"roy@roy.com", subject: "Testing Post", message: "This is just to test
the posting"},
function(data){
alert("Data Loaded: " + data);
});
I don't get an alert or anything back, even if I just include an echo
'Ok'; in the sendemail.php page. It's almost like the linked page
doesn't recognize the jquery library because it's in a linked page in
a tab in a dialog. Make sense?
TIA,
John