[thelist] NS 4.x Reloading

miinx lists at miinx.com.au
Fri Oct 11 21:44:00 CDT 2002


Brian W. Reaves wrote:
> http://www.beachrentalvacations.com/temp/
> I included the NS 4X resize fix in the body tag for this page and the page
> reloaded over and over in NS 4x. There are 3 forms on the page and they are
> causing the problem. If I remove all of them it stops, but if I remove 1 or
> 2 of them the reloading continues.
> Please advise...

Hi Brian,

More problems within your code that are probably causing NS to baulk.
Listed here in the order I *think* they're most likely to be the problem:

- there is no such thing as <input type="textbox"> ... change all of
these to <input type="text">

- you've got a 2nd <head></head> section right at the end of your code -
get rid of this, move those meta tags up with the others

- you've got image widths & heights defined incorrectly - don't include
the 'px' in the html tag.  So, change all of these:  <img width="100px"
height="20px">  (or whatever size they are) to <img width="100" height="20">

- move all the contactform stuff (that <form> tag & hidden fields) to
before the <table> tag there, (line 120), and the matching </form> to
after the </table> (line 197)

- use onFocus instead of onClick for the <input type='text'> event
handlers -- onClick is not a default method of these types of fields

- move all the contactform stuff (that <form> tag & hidden fields) to
before the <table> tag there, (line 120), and the matching </form> to
after the </table> (line 197)

Finally, there don't seem to be a style sheet linked in at all.  (this
won't affect your problem tho)

Good luck!
Karen
-------
Miinx Design & Development
e :: karen at miinx.com.au
p :: 0413.880.302
w :: www.miinx.com.au





More information about the thelist mailing list