Forum Moderators: not2easy
My problems is that the mac version needs a different style sheet to that of the pc version. I am trying to set up and if statement looking for the different versions but my problem is linking the style sheet in the javascript if statement using the <link> tag
can anyone assist
if (navigator.userAgent.indexOf("Mac") > -1)
document.write("<link rel='stylesheet' href='macstyle.css'>")
else
if (navigator.userAgent.indexOf("Win") > -1)
document.write("<link rel='stylesheet' href='winstyle.css'>")
else
document.write("<link rel='stylesheet' href='nixstyle.css'>")
Place this in the <script> section of the <head> of your pages, or save it in external .js file and attach to all pages.