I've tried using noscript on firefox but it doesn't help, is there any way to use firebug to disable this button?
+1
A:
With Firebug enabled (assuming Windows platform):
- Right-click on the "Change View" button
- Choose "Inspect Element" from the context menu
- In the HTML tree in Firebug, click the DIV with an ID value of "ctl00_LwViewSwitcher1_ViewSwitcherButton" (if it's not already selected)
- In the "Style" pane on the right, right-click on the ".LWVS_Button" style rule
- Choose "New Property" from the context menu
- Name the new property "display" and give it a value of "none"
Tada! No more button.
Of course, this isn't a permanent solution, but Firebug isn't designed to continually filter web pages on subsequent visits. For that you'd want Greasemonkey like Anthony Mills said, or something similar.
Joshua Carmody
2009-10-23 19:10:29