Problem with website not loading images -

www.gsmar.com is a real estate website that shows pics of homes for sale. After entering search criteria, you have a list of properties, and the images load on this page. When you click on a property, it should load the image of the home and you should be able to click through all the pics. I haven't been able to use Firefox to look at this website since last upgrade but the "other" browsers work fine. Please help!

The JavaScript on that site isn't compatible with Firefox because document.all is used instead of document.getElementById();
See https://developer.mozilla.org/en/Mozilla_Web_Developer_FAQ#JavaScript_doesn.E2.80.99t_work!_Why.3F

Similar Messages

  • I still am having problems with Aperture not loading,  It just refuses to work, and I get the message saying it has encountered a problem, and I may need to re-install which I have done dozens of times. The fix mentioned on an earlier post wont work as it

    I still am having problems with Aperture not loading,  It just refuses to work, and I get the message saying it has encountered a problem, and I may need to re-install which I have done dozens of times. The fix mentioned on an earlier post doesn't work as it is for Ver 10.6.6 and I am running 10.6.7

    Do you have Final Cut installed on your machine?
    If so, you may want to look at this article: http://support.apple.com/kb/TS3528
    Let us know if that helps.

  • Problems with pages not loading that IE does

    I turned on my pc today and firefox wouldn't load most of the pages i tried to co nnect with, Google, BBC are two of them. I turned on internet ex[plorer and they loaded the pages that fireox wouldn't. I googled for help and followed the steps to clear history, cache and cookies and restarted my PC to be sure it would work but it did nothing.
    I have no clue what to do but please let me fix this as the problem is enfuriating and I hate having to use internet explorer

    It is possible that your security software (firewall, anti-virus) blocks or restricts Firefox or the plugin-container process without informing you, possibly after detecting changes (update) to the Firefox program.
    Remove all rules for Firefox and the plugin-container from the permissions list in the firewall and let your firewall ask again for permission to get full, unrestricted, access to install for Firefox and the plugin-container process and the updater process.
    See:
    *https://support.mozilla.org/kb/Server+not+found
    *https://support.mozilla.org/kb/Firewalls
    *https://support.mozilla.org/kb/fix-problems-connecting-websites-after-updating
    You can check if is helps if you start Firefox in <u>[[Safe Mode|Safe Mode]]</u> by holding down the Shift/Options key.
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    Clear the cache and remove cookies only from websites that cause problems.
    "Clear the Cache":
    *Firefox/Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox/Tools > Options > Privacy > "Use custom settings for history" > Cookies: "Show Cookies"

  • Problems with finder not loading

    Does anyone know how I would go about getting the installation discs replaced for my powerbook G4? I have been trying to look through apple's website, but I could not find information about how to replace the installation discs if they are lost/unavailable. I think they were misplaced in the process of moving but I don't know where to go to get news ones or if they are really necessary.
    The computer froze up a few days ago in the middle of a download of music to my ipod and when I restarted the computer, the finder would not load, including the bar across the top, desktop items (Mac HD included), and the trashcan. The dock still loads, however, all but three or four programs shut down immediately upon opening.
    If anyone thinks there might be a different option than reinstalling/repair, suggestions are welcome! If not, do you know where I can get new discs?
    Thanks so much!
    KCrowder
    Powerbook G4   Mac OS X (10.2.x)  

    Welcome to the Apple Discussions!
    You can call AppleCare Support to get a set of replacement disks. Last I heard, they did charge $50-$60 though...
    If your PowerBook really shipped with Mac OS X 10.2.x, then you could buy a retail copy of Mac OS X 10.3 (Panther) or Mac OS X 10.4 (Tiger) and use the Disk Utility on that disk to attempt to repair your hard drive and/or do a reinstall of Mac OS X. However, the retail copy of Mac OS X won't include any additional applications (like iLife) that may have come with your PowerBook.
    -Doug

  • I suddenly have a problem with Mail not downloading images correctly

    Instead of the images I get the blue box with the ?. I recently upgraded to OSX 10.8.1, and the viewing preference is already chacked to show remote images for html messages. This problem is occurring for emails I want to see images from like houzz.com
    Thanks in advance for the help.

    Mail 6.0 not displaying images.
    I'm having the same issue after upgrading to Mountain Lion.  All I get is "?" instead of the embedded images.
    I've checked all options in the preferences but there isn't one that controls diplay of images in email.
    Please help.

  • Problems with Blogger not loading certain content

    The Blogger' followers' widget is not loading for some reason. No other browser appears to have this issue. Only Firefox 5. I have disabled pop-up blocker, cleared cache, even tried safe mode with no luck. All plug-ins are updated. I have been using AVG free for a long time and never had a problem up until maybe a week or 2 ago. System is windows XP SP3

    Unfortunately, discussion relating to ripping commercial discs is not permitted here.

  • Servlet streaming video to client, problem with Movie not loaded.

    Ok, I am sorry if this question is beyond the scope of Servlets/Java or J2EE but I figured it was worth a shot:
    I have two servlets, one is a very simple class consisting of a doGet which just calls doPost and the doPost which just plucks out a single parameter from the request and prints out some HTML. Here is the code:
         public void doPost(HttpServletRequest request, HttpServletResponse response)
                   throws ServletException, IOException {
              String videoDir = request.getParameter("directoryofvideo");
              response.setContentType("text/html");
              PrintWriter out = response.getWriter();
              if (videoDir==null||videoDir.equals("")||!new File(videoDir).exists()) {
                   out.println("<script type=\"text/javascript\">alert(\"There was an error locating the selected videos\");</script>");
                   //return;
              out.println("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">");
              out.println("<HTML>");
              out.println("  <HEAD><TITLE>A Servlet</TITLE></HEAD>");
              out.println("  <BODY>");*/
              out.println("   <object id=\"player1\" width=\"480\" height=\"360\" data=\"/MyApp/serveUploadedFile?url=//ns20/data3/Video/player_flv_maxi.swf\" type=\"application/x-shockwave-flash\">");
              out.println("    <param value=\"/MyApp/serveUploadedFile?url=//ns20/data3/Video/player_flv_maxi.swf\" name=\"movie\"/>");
              out.println("    <param value=\"true\" name=\"allowFullScreen\"/>");
              out.println("    <param value=\"configxml=/MyApp/serveUploadedFile?url=//ns20/data3/Video/1.xml\" name=\"FlashVars\"/>");
              out.println("   </object>");
              out.println("  </BODY>");
              out.println("</HTML>");
              out.flush();
              out.close();
         }In case that is hard to read, the HTML printed is this:
       <object id="player1" width="480" height="360" data="/MyApp/serveUploadedFile?url=//ns20/data3/Video/player_flv_maxi.swf" type="application/x-shockwave-flash">
        <param value="/MyApp/serveUploadedFile?url=//ns20/data3/Video/player_flv_maxi.swf" name="movie"/>
        <param value="true" name="allowFullScreen"/>
        <param value="configxml=/MyApp/serveUploadedFile?url=//ns20/data3/Video/1.xml" name="FlashVars"/>
       </object>The second servlet, appropriately named: serveUploadedFile, reads in from the file off the file system and streams the data back to the client and I know it works because I can hit /MyApp/serveUploadedFile?url=//ns20/data3/Video/player_flv_maxi.swf and get the swf player but if you'd like to see the code I can copy and paste that in here as well.
    The problem is by page loads blank, all the html is written but in firebug the only thing actually downloaded to the client is the first swf player, and if I right click in the window it says "Movie Not Loaded" on Firefox, IE and Safari. I have a working example of a video that is hosted on our NAS with the exact same HTML (which is where I got that from) except the swf and xml files appear as just their names because they are in the same directory as the index.html.
    Any ideas?
    Thank you so much in advance.

    Also, I realize the parameter is not being used here that is because in order to eliminate possibilities of the problem I hard coded the path into the println statements and I am sure the path and all the files exist as well ;)

  • Problems with PowerPoint not loading graphics correctly/fully

    Has anyone else had problems with PowerPoint?
    When I loaded a pptx file from Office 2010 it was missing the top heading (banner heading)
    When I saved the file in office 2003 the heading was now back

    Please see this technote on unsupported features of Powerpoint files when uploaded to Adobe Connect:
    http://kb2.adobe.com/cps/404/kb404463.html
    Understand that when you use a Share Document Pod and choose to upload the PPT or PPTX file that you are then converting that file to an Adobe Flash file so that it can be streamed to attendee desktops.  It does not remain in it's original format.  Not everything will convert exactly as planned so be prepared.  You always have the option of screen sharing instead of using the share pod option.
    Also read this technote that makes suggestions for work arounds:
    http://kb2.adobe.com/cps/404/kb404325.html

  • Need major help with websites not loading...

    So I have done what I think is everything... some websites just don't load... they tell me... that the server dropped the connection or that it timed out.
    So, I've worked with my dsl provider and they even came out with a computer (PC) and the websites seemed to have worked for them. I reloaded the operating system... nothing seems to be working... I even tried to browse with the firewall not on. Help. Please... I need to call Applecare again but this is making me crazy...

    Hi there!
    I agree with Al Van, you should post a couple of URLs for all to check out. You should also give a few more details, type of browser and type of connection (wireless or ethernet).
    Here's a good link to check on your connection speed and quality of connection: http://myspeed.visualware.com/ - this uses Java, if you have difficulty with this link post back.
    I surf the web with both a Mac and a PC and have never had problems loading websites on either computer (unless they were offline). I occasionally will run into sites rendering differently on each computer. The problem you described "the server dropped the connection or that it timed out. " is a connection issue or your Mac is taking "too long" to gather info and rendering page...
    Post back with more details... Rick
    you can try this link: http://alertra.com/spotcheck.php to check if the sites you cannot reach are off line...

  • Problems with Safari not loading pages properly, Problems with Safari not loading pages properly

    I updates to the newest version of Safari via apple and now none of my pages load correctly. Most of the times I have to reload the page several times to get everything loaded. When I first load a page there are little question marks where images should be, sometimes it doesn't load at all and says it can't find the server or something. Some sites just load super funny. All I did was load the newest version of Safari. Anyone have any idea on how to fix this?

    http://support.apple.com/kb/TS3408
    http://docs.info.apple.com/article.html?path=Safari/5.0/en/9313.html
    http://docs.info.apple.com/article.html?path=Safari/5.0/en/9274.html

  • How can I end this annoying problem of YouTube not loading?

    Hello y'all!
    Relatively new to the Mac world here, so go easy on me!  How can I end once and for all, this problem with YouTube not loading in Safari and not being able to watch embeded videos?  I've read various "fixes" and have tried them all, and nothing seems to work.  Help!!  Thanks!

    We have no way of knowing exactly which "fixes" you are referring to...
    Try deleting Flash cookies.  http://machacks.tv/2009/01/27/flushapp-flash-cookie-removal-tool-for-os-x/
    Try uninstalling then reinstalling the Flash plugin. http://kb2.adobe.com/cps/865/cpsid_86551.html#ostype=m,prob1=fnctn,prob2=game,
    Your profile shows you are running v10.6.7. Of that is correct, update your software. Click your Apple menu (top left in your screen) then click Software Update...
    Repair Permissions using Disk Utility.    /Applications/Utilities

  • Firefox does not load images on any website. This has been a problem for years

    It's not clear why. but only Firefox does not load images on web pages. Works fine on IE
    Follow all the troubleshooting steps at
    http://kb.mozillazine.org/Images_or_animations_don%27t_load
    no of it works. Never has. I see this problem all over. It's the main reason that users don't switch to Firefox.

    Create a new profile as a test to check if your current profile is causing the problems.
    See [[Basic Troubleshooting#Make_a_new_profile|Basic Troubleshooting&#58; Make a new profile]]
    There may be extensions and plugins installed by default in a new profile, so check that in "Tools > Add-ons > Extensions & Plugins"
    If that new profile works then you can transfer some files from the old profile to that new profile (be careful not to copy corrupted files)
    See http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox
    Your above posted system details show outdated plugin(s) with known security and stability risks.
    *Shockwave Flash 10.0 r22
    Update the [[Managing the Flash plugin|Flash]] plugin to the latest version.
    *http://www.adobe.com/software/flash/about/

  • Why after ccleaner mozilla not load images in some websites. How fix it?

    Why after ccleaner mozilla not load images in some websites. How fix it?

    You can use these steps to block images from a specific domain:
    * Open the web page that has the images in a browser tab.
    * Click the website favicon ([[Site Identity Button]]) on the left end of the location bar.
    * Click the "More Information" button to open the "Page Info" window with the Security tab selected (also accessible via "Tools > Page Info").
    * Go to the <i>Media</i> tab of the "Tools > Page Info" window.
    * Select the first image link and scroll down through the list with the Down arrow key.
    * If you want to block images then place check-mark in the box "<i>Block Images from...</i>" to block the images from that domain.
    You can set the permissions for the domain in the current tab in Tools > Page Info > Permissions

  • We have version 10.5.8 photoshop CS3 for Mac. How do we fix a problem with photoshop not resizing dpi? For example we resized a 72 dpi image to 200 dpi, when we do a pdf analysis it read as 344 dpi.

    We have version 10.5.8 photoshop CS3 for Mac. How do we fix a problem with photoshop not resizing dpi? For example we resized a 72 dpi image to 200 dpi, when we do a pdf analysis it read as 344 dpi.

    Sounds like it's a problem with the Acrobat settings. Did you set them to the same resolution?

  • Have been trying all weekend to upload Jpegs- either Send does not work or shows files uploading then shows error- never had this problem with Send Now-16 images total size 92MB-largest image 13MB

    Have been trying all weekend to upload Jpegs- either Send does not work or shows files uploading then shows error- never had this problem with Send Now-16 images total size 92MB-largest image 13MB

    Hi Ciaran19,
    Are you sending files from the Adobe Send interface, Adobe Reader, or the Outlook plug-in?
    Have you checked to see whether the files that you're sending appear in the Recent Files/Sent Files list when you're logged on to https://cloud.acrobat.com? (It could be that they're uploading, but not being sent.)
    It would also be worthwhile to send the files in smaller batches, to see whether a particular file or files is problematic, and causing the error.
    Please let us know how it goes. If you're still having trouble, please let us know where you're sending from, and whether you're able to send the files in smaller batches. It would also be helpful to know the exact error message that you're receiving.
    Best,
    Sara

Maybe you are looking for

  • Mapping script issue

    Hello experts, I'm quite new to FDM and Iv'e been trying to write a simple conditional mapping script with no success. for my entity dimension, in most cases, the source is ths same as the target though there are some cases where this does not apply

  • Make a Line Fit with Vision Assistant for a polynominal function?!

    Hello I do have following problem to solve: I do have a laser spot which draws a line (non linear) to a wall. For this line I need to know the (exact) mathematical function. Therefore I can get an image of the line but I do not know how I can extract

  • Java.nio and databases

    Please, need help. I'm using java.nio to get large files contents (txt) and need to put these data into MSSQL SERVER 2000 database tables. NIO have capabilityies to get data and transfer directly to the tables? If so, how can i do it? Thanks a lot Al

  • [svn:cairngorm3:] 19478: -General: Reverted migration to Flex 4. 5 back to Flex 4.1.

    Revision: 19478 Revision: 19478 Author:   [email protected] Date:     2010-12-20 03:02:48 -0800 (Mon, 20 Dec 2010) Log Message: -General: Reverted migration to Flex 4.5 back to Flex 4.1. -Insync Sample: Fixed Insync Build error. -Navigation: added r

  • I need to film my iPad screen

    I'm trying to film a demo for an iPad application and was wondering if there's anything out there that will let me film my screen as I go?