I have a site with a boomark link. IE does support bookmark, so displays the link "bookmark this page" text I told it to. But firefox leaves it blank.
I want a code that if viewed in firefox, make it not have a gap like at the moment, but instead display "Press Ctrl + D to bookmark this page" in firefox only. Is this possible??
Something like:
code:
<javascript>
if IE.browser
print: bookmark code here
else
print="Press Ctrl + D to bookmark this page"
</script>
or simalar??