I'm trying to build bugzscout into my JavaScript app so it can report errors when it encounters them. I'm currently opening a hidden iframe, programatically filling in the fields and submitting it. This allows the bug to be submitted, but I can't get the response as most browsers block JavaScript from reading content from a different Origin.
The W3C way for doing this is Cross-Origin Resource Sharing. This would require a change to the headers that bugzscout returns to the browser. It would also only work in a subset of browsers.
Does anyone have a way I can both post and read the response from bugzscout from a JavaScript app?