Hi there, I'm a newbie trying to do a simple HTTP post in JS within a Firefox extension..
This isn't passing through the parameters:
var params = "a=1&b=2&c=3"
req.open('POST', 'http://www.mywebsite.com/');
req.send(params);
Any ideas on what I'm doing wrong? Thanks.