All Questions
3 questions
0
votes
1
answer
408
views
Change value of input in XHR request with JQuery
I'm currently developing an webextension for Chrome and Fiferox. I'm loading some Html content using a get request and I need to change one of the inputs values in the HTML data response before insert ...
0
votes
1
answer
354
views
Firefox extension missing Referer url in ajax header when making ajax calls
I am trying to make an ajax call to a server and the server needs referer url to identify my request
$.ajax({
url: abc + '/123/xyz/',
cache: false,
...
0
votes
1
answer
3k
views
jQuery.ajax() blocked due to CSP within WebExtension
I'm developing a Mozilla Firefox extension, which needs to communicate with my server on localhost:8080.
jQuery.ajax({
type: query_method,
url: "http://localhost:8080/item",
...