zem / qtc-net

A short telegram sytem for Amateur Radio
Other
5 stars 0 forks source link

message displays should provide links to calls #14

Closed zem closed 10 years ago

zem commented 10 years ago

calls in messages should provide a link, to the Callsigns message list that should be done with some js to export all the form data

zem commented 10 years ago
function post(path, params, method) {
method = method || "post"; // Set method to post by default if not specified.

// The rest of this code assumes you are not using a library.
// It can be made less wordy if you use one.
var form = document.createElement("form");
form.setAttribute("method", method);
form.setAttribute("action", path);

for(var key in params) {
    if(params.hasOwnProperty(key)) {
        var hiddenField = document.createElement("input");
        hiddenField.setAttribute("type", "hidden");
        hiddenField.setAttribute("name", key);
        hiddenField.setAttribute("value", params[key]);

        form.appendChild(hiddenField);
     }
}

document.body.appendChild(form);
form.submit();

}

post('/contact/', {name: 'Johnny Bravo'});

from: http://stackoverflow.com/questions/133925/javascript-post-request-like-a-form-submit

zem commented 10 years ago

implemented