up vote 0 down vote favorite
share [g+] share [fb]

I need to create some kind of JS onclick that will run a php mail script that emails a page with broken content.

Would it be best to run a normal javascript onclick that calls a php file which is hidden, grabs the referring url and emails it?

I would also like a message confirming the click, then disable it.

Is there anything like this available?

link|improve this question

71% accept rate
I believe I figured this out, ill take an ajax contact form, strip it clean, add referring headers and should be good to go. – user176213 Oct 3 '09 at 8:45
feedback

1 Answer

This will create onClick handler for your link, and action will be done in case user will accept confirm message.

var onClickHandler = function() {
   if (confirm("Are you sure?")) {
       $.post("your_php_mail_script.php", {broken_url: document.location});
   }
};

$("#your_link_id").bind("click", onClickHandler);

And that is all. In your script you'll get broken url as POST parameter ($_POST['broken_url']). This will be done asynchronous. I can't understand what you want to disable and after what action.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.