Tagged Questions
4
votes
3answers
4k views
How do you make a post request into a new browser tab using JavaScript / XUL?
I'm trying to open a new browser tab with the results of a POST request. I'm trying to do so using a function containing the following code:
var windowManager = ...
3
votes
2answers
203 views
Is there a correct way to 'yield' in the cooperative threading sense in javascript?
I'm writing a ubiquity plugin the long function callback for an ajax query is blocking up the GUI Thread causing firefox to lock up.
The obvious solution seem to be to use some sort of deferred ...
2
votes
3answers
190 views
open a url using java script for Ubiquity command
I was writting a Ubiquity command but I have 0 expriece on JS. How to open an url (http://www.stackoverflow.com for example ) using JS?
EDIT:
Thanks you all, I believe you are correct, but with ...
2
votes
2answers
885 views
jQuery + Ubiquity: Return a document object from a URL
I'm trying to write a simple Ubiquity command that will run a query on Wolfram Alpha, and display the results in the Ubiquity preview object.
I need to set the innerHTML of the preview object. I am ...
1
vote
1answer
93 views
Ubiquity CmdUtils.setSelection won't replace HTML
I'm attempting to write a Ubiquity command that allows you to replace a selected link or URL pointing to an image with that image itself. However, the CmdUtils.setSelection() function (documented ...