I'm trying to get a Firefox plugin to read data from a HTTP get, parse the results and present them as links in a bookmark-like drop-down menu.
My quesion then is: Does anyone have any sample code that will do this?
|
|
I'm trying to get a Firefox plugin to read data from a HTTP get, parse the results and present them as links in a bookmark-like drop-down menu. My quesion then is: Does anyone have any sample code that will do this? |
||
|
|
|
|
Robert Walker did a great job of describing how to send the request. You can read more about Mozilla's xmlhttprequest here.
(Edit - i didn't read closely enough, thanks Robert) You didn't indicate exactly what the data was, although you mentioned wanting to parse links from the data. You could the xmlhttp.responseText as an xml document, parse out the links, and place it into a menulist or whatever you like. |
|||
|
|
|
Having never developed a plugin myself, I'm not certain how this is typically done in plugins, but since plugin scripting is JavaScript, I can probably help out with the loading part. Assuming a variable named url containing the URL you want to request:
A couple of notes notes on this code:
|
||
|
|