Geeks Talk

Prepare for your Next Interview




Browser buttons through CSS

This is a discussion on Browser buttons through CSS within the HTML & CSS forums, part of the Web Development category; Can We control the browser buttons through CSS. Here I have some scripts for tat. As i am not well versed with CSS. So can u help me solve this ...


Go Back   Geeks Talk > Web Development > HTML & CSS

Register FAQ Members List Calendar Mark Forums Read
  #1 (permalink)  
Old 05-13-2007
Junior Member
 
Join Date: May 2007
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
iravhari is on a distinguished road
Browser buttons through CSS

Can We control the browser buttons through CSS. Here I have some scripts for tat. As i am not well versed with CSS. So can u help me solve this prob.

Code:

Code:
var css = "
#rewind-button[disabled="true"] { display: none; }
#rewind-prev-button[disabled="true"] { display: none; } 
#back-button[disabled="true"] { display: none; } 
#forward-button[disabled="true"] { display: none; } 
#fastforward-button[disabled="true"] { display: none; } 
#fastforward-next-button[disabled="true"] { display: none; } 
#reload-button[disabled="true"] { display: none; } 
#stop-button[disabled="true"] { display: none; }";
if (typeof GM_addStyle != "undefined") {
GM_addStyle(css);
} else if (typeof addStyle != "undefined") {
addStyle(css);
} else {
var heads = document.getElementsByTagName("head");
if (heads.length > 0) {
var node = document.createElement("style");
node.type = "text/css";
node.innerHTML = css;
heads[0].appendChild(node); 
}
Reply With Quote
Sponsored Links
Reply

  Geeks Talk > Web Development > HTML & CSS


Thread Tools
Display Modes


Similar Threads

Thread Thread Starter Forum Replies Last Post
hide my browser vmshenoy Geeks Lounge 1 01-18-2007 02:43 AM
Opera 9 - Worlds Fastest Browser Lokesh M Geeks Lounge 1 09-20-2006 08:49 AM


All times are GMT -4. The time now is 01:42 AM.


Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0
Copyright © 2008 GeekInterview.com. All Rights Reserved