FRIHOSTFORUMSSEARCHFAQTOSBLOGSDIRECTORY
You are invited to Log in or Register a Frihost Account!

Ajax Or Similar Popup Box For Lost Pass

 


smokey4life
ok, im trying to get my forgot pass link found at the bottom of the page on my website http://www.xtm.frihost.org/ to open an ajax box or something similar instead redirrecting them to a whole new page it would just look so much nicer to have a simple little box pop open to submit their info.

All i need is some type of script that will allow me to load my .php file for this into a popup window. I found a nice little script that kind of worked which let me load the php file into a popup and it seemed to work but it conflicted with my site in so many way due to css styling so i need a new cleaner or simple approach.

It does not have to be ajax anything will work so long as i keep it fairly simple and decent looking. Thanks again for your guys help!
imagefree
you may use highslide.

http://www.highslide.com/
rvec
moved to javascript forum
fuhgeddaboutit
I get forbidden when I want to open your site
smokey4life
yea sorry bout that try this link here http://xtm.110mb.com/coldstreets at the very bottom of the page there's a forgot password link if you click it you'll see that the box is very small in the first place which is why i want to put it in some type pf clean looking popup, i see no point in it having its own page.

Sorry about that and thanks again for your guys help.
Marcuzzo
you could use a JS popup...

Code:
<a href="javascript:void(0);" onclick="window.open('http://xtm.110mb.com/coldstreets/login.php?x=lostpass','resetwin', 'width=450,height=200,scrollbars=no,toolbar=no,location=no'); return false;">Forgotten your password? Click here to Reset it.</a>



or a dhtml popup... I would use this as a popup blocker will block any window opened by the window.open() method.
the DHTML popup is not blockable
Code:
function popup(){
      var div = document.createElement("div");
      div.style.border=2  + "px solid silver";
      div.style.backgroundColor="black";
      div.style.position="absolute";
      div.style.width = 350 + "px";
      div.style.height= 350 + "px";
      div.style.left=(screen.width/2) - 175 ;
      div.style.top=(screen.height/2) - 350 ;
      div.style.color="silver";
      div.innerHTML = "<H1>Your Form here</h1>";
      document.body.appendChild(div);
   }
Related topics

Embed object Not displaying of FireFox
If I die today, what will I miss the most?
Windows Tips&tricks!
PHPMYADMIN - HELP!!!
AJAX

Disable Right Click On ANy Browser
Lost the pass
Windows is freer than Linux
HELP! Lost my box for Dreamweaver CS4, need product key
Programming links, info, and tutorials

How to become a millionaire on the internet?
Football Manager 2005 (PC) Review feat screeshots
Does any one watch Lost?
F. Nietzsche
www.Syrnia.com
Reply to topic    Frihost Forum Index -> Scripting -> Html, CSS and Javascript

FRIHOST HOME | FAQ | TOS | ABOUT US | CONTACT US | SITE MAP
© 2005-2007 Frihost, forums powered by phpBB.