All Bar

Dear All,

When I run my application I want Hide (remove) all bars if run on IE or

FireFox. How can I do it?

Is there any one have this script?

Thanks in Advance,

M

[202 byte] By [JavaIQa] at [2007-11-27 10:55:24]
# 1

You can't achieve this using JSF.

Use Javascript.

BalusCa at 2007-7-29 11:56:11 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2

thank you,

I know that but I don't have this script,

JavaIQa at 2007-7-29 11:56:11 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 3

Uhm, just write it?

If you don't know JS, be so kind to follow a tutorial.

This is a nice one: http://www.w3schools.com/js/default.asp

BalusCa at 2007-7-29 11:56:11 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 4

search it use google

you will find the code you need

perhaps you can do it yourself

this is good idea

Message was edited by:

lysmart

lysmarta at 2007-7-29 11:56:11 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 5

<SCRIPT Language ="JavaScript" type="text/javascript">

function simpleDialog(msg) {

features ='toolbar=no,location=no,directories=no,status=no,menubar=no'

dlg = window.open ("","Dialog",features)

}

</SCRIPT>

onclick='simpleDialog("Click to close")'

but Navigation Bar still and menu bar I want to remove it also then build own menu bar

JavaIQa at 2007-7-29 11:56:11 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...