1 function switch2post(e) {
2 var text = document.getElementById('html').value;
3 if (text.length < 8000) {
4 var form = document.getElementById('filter');
5 var action = form.action;
6 action = action.substr(0, action.indexOf('?'));
7 location.href = action + '?get&html=' + encodeURIComponent(text);
13 function setup_switch2post() {
14 var form = document.getElementById('filter');
15 form.onsubmit = switch2post;
18 if (window.addEventListener) {
19 window.addEventListener("load", setup_switch2post, false);
20 } else if (window.attachEvent) {
21 window.attachEvent("onload", setup_switch2post);