diff --git a/360link-reset.2.0.js b/360link-reset.2.0.js index f618f83..9cbc7a9 100644 --- a/360link-reset.2.0.js +++ b/360link-reset.2.0.js @@ -372,6 +372,17 @@ jQuery("#360link-reset ul li a").click(function() { if(clicks > 1) { jQuery(".doc-del-tooltip").show(); + //lets also grap the openURL we are passing to the browser and pass it off + //to a PHP script that will write it elsewhere, so it can be checked + var URL = jQuery("div#ArticleCL a").attr('href'); + jQuery.ajax({ + type: "POST" + data: {URL : URL}, + dataType: "text", + url: "url_write.php" + + }); + } }); diff --git a/url_write.php b/url_write.php new file mode 100644 index 0000000..d47ed6c --- /dev/null +++ b/url_write.php @@ -0,0 +1,19 @@ + \ No newline at end of file