Today's Posts Follow Us On Twitter! TFL Members on Twitter  
Forum search: Advanced Search  
Navigation
Marketplace
  Members Login:
Lost password?
  Forum Statistics:
Forum Members: 24,254
Total Threads: 80,792
Total Posts: 566,472
There are 1859 users currently browsing (tf).
 
  Our Partners:
 
  TalkFreelance     Design and Development     Programming     Development Software and Tools :

Is this possible?

Thread title: Is this possible?
Closed Thread    
    Thread tools Search this thread Display Modes  
10-15-2006, 03:54 PM
#1
Jeff Andersen is offline Jeff Andersen
Status: Superstar
Join date: Apr 2005
Location:
Expertise:
Software:
 
Posts: 4,449
iTrader: 10 / 100%
 

Jeff Andersen is on a distinguished road

  Old  Is this possible?

I know how to disable CSS in Firefox, as well as Netscape but was wondering if it is possible to disable it in Safari as well as Internet Explorer 6?

10-15-2006, 04:09 PM
#2
smackheadshow is offline smackheadshow
Status: Sin Binner
Join date: Oct 2006
Location: England
Expertise:
Software:
 
Posts: 227
iTrader: 4 / 100%
 

smackheadshow is on a distinguished road

Send a message via MSN to smackheadshow

  Old

Umm No offence but why would you want to disable css.

10-15-2006, 04:20 PM
#3
Jeff Andersen is offline Jeff Andersen
Status: Superstar
Join date: Apr 2005
Location:
Expertise:
Software:
 
Posts: 4,449
iTrader: 10 / 100%
 

Jeff Andersen is on a distinguished road

  Old

Do have a look at the site without CSS maybe?
There is a lot that can be learned from what is underneath the CSS when coding for multiple browsers.

10-16-2006, 10:50 PM
#4
Artistic is offline Artistic
Status: Sin Binner
Join date: Oct 2006
Location:
Expertise:
Software:
 
Posts: 16
iTrader: 0 / 0%
 

Artistic is on a distinguished road

  Old

Originally Posted by Jeff Andersen
Do have a look at the site without CSS maybe?
There is a lot that can be learned from what is underneath the CSS when coding for multiple browsers.
Why even would you want to?

10-15-2006, 06:34 PM
#5
Awesome is offline Awesome
Awesome's Avatar
Status: Pastafarian
Join date: May 2006
Location: Duct Taped to your Ceiling
Expertise:
Software:
 
Posts: 3,440
iTrader: 26 / 93%
 

Awesome is on a distinguished road

  Old

For IE there is the developer extension: http://www.microsoft.com/downloads/d...displaylang=en
With it you can disable CSS. I don't know about Safari.

10-15-2006, 09:15 PM
#6
Jeff Andersen is offline Jeff Andersen
Status: Superstar
Join date: Apr 2005
Location:
Expertise:
Software:
 
Posts: 4,449
iTrader: 10 / 100%
 

Jeff Andersen is on a distinguished road

  Old

Thanks! Thats and easier way to do so, I've also discovered the Accessibility button within Internet Options.

10-15-2006, 11:15 PM
#7
Jeff Andersen is offline Jeff Andersen
Status: Superstar
Join date: Apr 2005
Location:
Expertise:
Software:
 
Posts: 4,449
iTrader: 10 / 100%
 

Jeff Andersen is on a distinguished road

  Old

Any Mac users out there have a solution for Safari?

10-17-2006, 12:35 AM
#8
Awesome is offline Awesome
Awesome's Avatar
Status: Pastafarian
Join date: May 2006
Location: Duct Taped to your Ceiling
Expertise:
Software:
 
Posts: 3,440
iTrader: 26 / 93%
 

Awesome is on a distinguished road

  Old

Hey Jeff...

Create a bookmarklet using this js code:
Code:
var allNodes = document.getElementsByTagName('*');
var node;
var nodeName;
for (var i = 0; i < allNodes.length; i++) {
    node = allNodes[i];
    nodeName = node.nodeName.toLowerCase();
    if (node.style) {
        for (var p in node.style) {
            node.style[p] = '';
        }
    }
    if ('style' == nodeName) {
        node.removeChild(node.firstChild);
    }
    if ('link' == nodeName) {
        node.href='';
    }
}
should turn off CSS in safari

Closed Thread    


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 

  Posting Rules  
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump:
 
  Contains New Posts Forum Contains New Posts   Contains No New Posts Forum Contains No New Posts   A Closed Forum Forum is Closed