Hi, I am learning Javascript and going through a self paced book. I am trying to use n for new line in an example program, but it does not work. Here is the snippet: //Display the current date and time on the web page document.writeln(todays_date); if (navigator.appName == "Microsoft Internet Explorer") { document.write("nYou are running Microsoft IE") }else { if (navigator.appName == "Netscape") { document.writeln("You are ru ...
Read More »