vote up 0 vote down star

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?

flag

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. – netstormac Oct 3 at 8:45

1 Answer

vote up 4 vote down

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|flag

Your Answer

Get an OpenID
or

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