southbeach
Programmer
Something I see more and more and I like to use is the placing of a skin/layer over a page to restrict access to it ...
This is very handy when you want user to:
1) Confirm an alert() or confirm() JS function
2) Complete and submit popup windows
3) Simply to make sure something is done before the main page is made available again
4) Get the user's attention
I am sure that there are a number of other reasons to use this, and just as many not to use them.
I am working on a project where JS is used to accept input and confirm actions. I would like to do this to keep my users from hovering mouse over the main page. Hovering the mouse has action behind it and I need a way to keep these from conflicting with the existing triggered action.
How is this done?
I suspect through the use of layer and changing its attributes. Part of the trick is to set the layer's transparency at about 60%
Regards
This is very handy when you want user to:
1) Confirm an alert() or confirm() JS function
2) Complete and submit popup windows
3) Simply to make sure something is done before the main page is made available again
4) Get the user's attention
I am sure that there are a number of other reasons to use this, and just as many not to use them.
I am working on a project where JS is used to accept input and confirm actions. I would like to do this to keep my users from hovering mouse over the main page. Hovering the mouse has action behind it and I need a way to keep these from conflicting with the existing triggered action.
How is this done?
I suspect through the use of layer and changing its attributes. Part of the trick is to set the layer's transparency at about 60%
Regards