开发者

Manipulate Html from Firefox Extension

开发者 https://www.devze.com 2022-12-20 06:30 出处:网络
I am creating a Firefox extension that is somewhat similar to Firebug. There is a panel (or vbox) at the bottom of the browser that allows users to specify colors to certain Html elements. When they c

I am creating a Firefox extension that is somewhat similar to Firebug. There is a panel (or vbox) at the bottom of the browser that allows users to specify colors to certain Html elements. When they click the OK button, I would like these colors to get updated on the current web page.

I have my JavaScript working when I click the button (i am just throwing an alert), however when I change that JavaScript to change the css or styles of an element (by either using document.getElementById or jquery), nothing changes.

Is there something with 开发者_JS百科Firefox extensions that I am missing? Any help is appreciated.

Let me know if you have any questions. Thanks


https://developer.mozilla.org/en/Extension_Frequently_Asked_Questions#Accessing_the_document_of_a_webpage_doesn%27t_work

You want content.document.getElementById() and similarly for every other construct you use.

0

精彩评论

暂无评论...
验证码 换一张
取 消