Jan 23, 2001 #1 wood MIS Aug 3, 2000 139 CA Does anyone have a script that will determine if the person is using IE or Netscape? I don't care what version, just the browser type. Please help!
Does anyone have a script that will determine if the person is using IE or Netscape? I don't care what version, just the browser type. Please help!
Jan 23, 2001 #2 luciddream Programmer Nov 8, 2000 712 US if(document.all) { //IE code } else if(document.layers || (document.getElementbyID && !document.all) { //NS code. } adam@aauser.com Upvote 0 Downvote
if(document.all) { //IE code } else if(document.layers || (document.getElementbyID && !document.all) { //NS code. } adam@aauser.com