Is it possible to display different content within a CMS (DNN) based on the browser the user is using? For example, IF IE 7 then display content 1
IE7 doesnt like image maps that well and id rather just show the user a static image of the flow chart i have made.
<!--[if IE 7]>
Special instructions for IE 7 here
<![endif]-->
I would like to code some jquery to delete contents of the div class within the content pane (for that page, so checks for the file extension process.aspx) and then enable the image in the hidden div. << thats my theory?
- detect which browser (if ie7 then:
- delete content from content pane (checking the url for process.aspx)
- enable the hidden div using
display:block)
you can use
jQuery.browsermethod:http://api.jquery.com/jQuery.browser/