is it possible to execute a javascript code on all browser but not on chrome?I tried looking for a code snippet everywhere, but i only found browser detection codes and was unable to work it together so the code will not get executed on chrome browsers Any help will be greatly appreciated!This is what i currently have, will this work?\[code\]<SCRIPT language="JavaScript"><!--var browserName=navigator.appName; if (browserName=="Google Chrome"){ }else { "the code for every other browser here" }}//--></SCRIPT>\[/code\]