javascript and 64 bit machine

Post your questions and problem reports here

Moderator: kfury77

Forum rules
Please try to follow these guidelines. This will help to receive faster and more accurate response.
  • Check the Support section of the corresponding product first. Chances are you will find your answer there;
  • Do not create new topics for already reported problems. Add your comments to the existing topics instead;
  • Create separate topic for each problem request. Do NOT post a number of non-related problem reports in a single topic;
  • Give your topic a meaningful title. Titles such as "A question," "Bug report" and "Help!" provide others no clue what your message is about;
  • Include the version number of the software you are using;
  • This is not an official customer support helpdesk. If you need a prompt and official response, please contact our support team directly instead. It may take a while until you receive a reply in the forum;
Post Reply
User avatar
trishahdee
Posts: 32
Joined: Thu Jul 10, 2008 1:02 am
Contact:

javascript and 64 bit machine

Post by trishahdee »

I recently moved to my first 64 bit machine so I'm just getting used to the changes from that move and I'm not sure what I am experiencing has any relation to that but I thought I'd mention it first.

Javascript will not display in preview mode. Nor will it work when I send it out to view on a browser like FF, IE, Chrome, etc. When I try to view pages with js in preview it also now temporarily freezes the program. If I wait a minute or so WB will eventually respond and I can get out of preview mode and back to the code. The only way to test js now is to ftp it to my server.

Any help would be greatly appreciated!

Trishah
"It doesn't matter where we come from, what we've done or suffered, or even if we make a difference. We live as though the world was what it should be, to show it what it can be." ~ Angel, Season 4, Episode 67, "Deep Down"
User avatar
MikeyB
Top Contributor
Posts: 511
Joined: Fri Jun 09, 2006 10:38 am
Location: UK
Contact:

Re: javascript and 64 bit machine

Post by MikeyB »

That does sound odd, but I can't really speak for preview mode, but it should be fine when in a browser.

Have you tried a very simple HTML test page? Something like:

Code: Select all

<html>
<head>
    <title>Test</title>
    <script type="text/javascript">
        alert("hello");
    </script>
</head>
<body>
</body>
</html>
Should get alert popup.

Mike
Post Reply