Announcement

Collapse
No announcement yet.

Java script problems

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Java script problems

    to whom it may concern


    I am trying to run this html code that should display a navbar in my browser IE6
    using frontpage winxp pro works fine, using notebook and IE6 works fine but
    when I use BlueVoda all I get is a blank page.

    Things I have tried:

    1. under view page html in view menu of Bluevoda

    I have pasted it in the correct place between body tags

    2. I have tried to insert it using the html function

    3. I have tried to run it as script insert
    4. I have tried to run it as java insert

    results are same

    the code is below:

    it should reference the file on my hard drive and display the navbar; the file it references has all the graphics,html and java script necessary to produce this navbar and I re interrate this works 100% in frontpage and when run with my browser.

    code:

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
    <title>Webstyle produced NavBar</title>
    </head>
    <body bgcolor="#ffffff" text="BLACK">
    <script Webstyle4 src="../../../../DOCUME~1/CHARLE~1/LOCALS~1/Temp/WS3/contact_us.js"></script>
    </body></html>

    Awaiting your reply
    Thank you
    Charles Denton

    This post is at the request of your techinal support
    Person: Sarah
    Ticket ID: MRX-57903

  • #2
    Since BlueVoda is an HTML generator, it automatically generates <HTML><HEAD> and <BODY> tags, so you cannot insert those tags yourself.
    Your browaser will not display the page because it sees duplicated tgas.

    Inserting only the 'content' code should work just fine (inside the body):
    <script Webstyle4 src="contact_us.js"></script>

    Note, that I've also removed the path to the scriptfile, since it's a reference to your local drive.
    Forum Moderator
    BlueVoda Spe******t

    Comment

    Working...
    X