CodingForums.com

CodingForums.com (http://www.codingforums.com/index.php)
-   JavaScript frameworks (http://www.codingforums.com/forumdisplay.php?f=62)
-   -   Hello everyone i need urgent help,about javascript prompt (http://www.codingforums.com/showthread.php?t=185402)

davutmaz 12-28-2009 07:23 AM

Hello everyone i need urgent help,about javascript prompt
 
We made a web messaging program which had to show messages on pop up and also allow use of the prompt to give a single answer.

Our program had to show our prompts "always on top" and i couldn't succeed showing my prompt always on top.

I'm using windows 7 operating system and cant make it show the prompt "always on top"

If you can help me with this i'd be glad.

m4tuna 12-28-2009 09:18 PM

If I'm understanding correctly - you need a code that generates a pop-up that is shown "Always on Top" on the users screen...refer to the below, might help...

Code:

var y1 = 20;  // change the # on the left to adjuct the Y co-ordinate
(document.getElementById) ? dom = true : dom = false;

function hideIt() {
  if (dom) {document.getElementById("layer1").style.visibility='hidden';}
  if (document.layers) {document.layers["layer1"].visibility='hide';} }

function showIt() {
  if (dom) {document.getElementById("layer1").style.visibility='visible';}
  if (document.layers) {document.layers["layer1"].visibility='show';} }

function placeIt() {
  if (dom && !document.all) {document.getElementById("layer1").style.top = window.pageYOffset + (window.innerHeight - (window.innerHeight-y1))}
  if (document.layers) {document.layers["layer1"].top = window.pageYOffset + (window.innerHeight - (window.innerHeight-y1))}
  if (document.all) {document.all["layer1"].style.top = document.body.scrollTop + (document.body.clientHeight - (document.body.clientHeight-y1));}
  window.setTimeout("placeIt()", 10); }

window.onload=placeIt();
onResize="window.location.href = window.location.href"

cheers,

-mike fortuna


All times are GMT +1. The time now is 08:59 PM.

Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.