Jump to content

lleroy

Members
  • Posts

    6
  • Joined

  • Last visited

lleroy's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. yeah, but if I use onload, the loading indicater will only show at initial page load. I also have a 'refresh'-like button which runs the same script again, but when using that, the loading indicator don't show. Any other ideas?
  2. I have a PHP script which takes 3-4 seconds to load and display output. The output gets displayed in a iframe with this code: <iframe src="output1.php" name="output1" id="output1" frameborder="0" scrolling="no" marginheight="0" height="20"></iframe> <a href="output1.php?ip=10.0.0.14" target="output1">Run</a> When I load the page, the iframe loads output1.php for the first time. I then have a button, where I can run it with a parameter. I would like it to display "loading..." in between script loads. I know there are ways to do this in javascript, but I have very little knowledge about JS, so I would prefer to do this with html or possibly php. Any easy way to do this?
  3. Can I mix frames and iframes? How would I go about doing that?
  4. Hi, I have a 3-frame website, where I would like a link from the footer frame to display a webside in my contents frame. I can only get it to open the website in a new window. The website I want to display in the content frame is this: http://mail.one.com. I would also like it to automatically fill out the top text box with "@domain.com" and place the curser before the @. Any way to do that? This is my code: footer frame: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"> <head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>bottom</title><base target="contents" /><style type="text/css">.style1 {text-align: center;}.style2 {border-width: 0px;}</style></head> <body style="color: #FFFFFF; background-color: #000000"> <p class="style1"><a href="privileged.php" target="bottom"><img alt="Privileged" src="password.png" width="68" height="70" class="style2" /></a></p> </body> </html> content frame: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"> <head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>content</title><base target="main" /></head><frame name="content" src="mail.one.com"/><body style="color: #FFFFFF; background-color: #000000"> </body> </html> and the line I use for making the link (the one that appears in the footer) <a target="content" href="http://mail.one.com">Webmail</a>
  5. Hi I have made a very simple site using frameset. The site consists of 3 frames - header, body/middle and footer. The header and content frames are working just fine, but the footer isn't showing when browsing the site in IE. I *cannot* figure out why this is. It works as intended in Chrome. Please note that I'm using MS Expression Web for setting up the frameworks as I got frustrated and gave up doing it manually. This is why everything is a little messy and not neatly set up. The site can be found here: http://digis.dk/new What am I doing wrong? This is my code: index.html: <html> <head><title>index</title></head> <frameset rows="296,*,123" framespacing="0" border="0" frameborder="0"><frame name="top" scrolling="no" noresize="noresize" target="contents" src="top.html"><frameset cols="150"><frame name="contents" target="main" src="content.html"></frameset><frame name="bottom" scrolling="no" noresize="noresize" target="contents" src="bottom.html"><noframes><body> <p>This page uses frames, but your browser doesn't support them.</p> </body></noframes></frameset> </html> bottom.html: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"> <head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>bottom</title><base target="contents" /><style type="text/css"></style></head> <body style="color: #FFFFFF; background-color: #000000"> </body> </html> body/content: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"> <head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>content</title><base target="main" /></head> <body style="color: #FFFFFF; background-color: #000000"> </body> </html> header/top: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"> <head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>top</title><base target="contents" /></head> <body style="background-position: 50% top; color: #FFFFFF; background-color: #000000; background-image: url('gigid-digis.jpg'); background-repeat: no-repeat;"> </body> </html>
×
×
  • Create New...