antville/code/Site/menuext.skin
Tobi Schäfer 093b50670b initial check-in of internet explorer "post it" context menu;
(instructions: download and install /sitename/menuext.reg)
2003-06-30 08:25:28 +00:00

10 lines
425 B
Text

<script language="javascript" defer="defer">
var parentwin = external.menuArguments;
var doc = parentwin.document;
var sel = doc.selection;
var rng = sel.createRange();
var str = new String(rng.text);
var url = "http://project.antville.org/stories/create?content_text=";
var link = escape('<a href="' + doc.location.href + '">' + doc.title + "</a>: ");
doc.location.href = url + link + str;
</script>