Error - Page Not Showing In Safari Nor Chrome

Aug 1, 2011

Its showing perfectly in FF but its not displaying the main content on chrome nor safari.

im not a developer but i enjoy the time i spend figuring out this kinda stuff.

View 2 Replies


ADVERTISEMENT

Script Works In Safari, Firefox, Chrome But Error's In IE8?

Mar 9, 2011

If you select a Training Event from the menu - "Submit This Record" will appear - click on it. Three alerts should come up - the first two showing data elements (normally not there but I needed to replace some code for this demonstration as the "real" page interacts with my live database), and the last saying "data submitted". In Safari, Firefox and Chrome these all work fine but in IE8 (Explorer) it gives an error on page error ...

If you click on the Volunteer Events radio button, an alert show ups that shows some more data elements (again normally not there), then select a Volunteer Event from the drop down list, make selections from any drop down lists that then appear after that until finally several other form items appear. You must enter a date, and at least one entry from the "Volunteer Activity Itemized Times" drop down menus before you click on "Submit This Record" - the same three alerts should come up - and like the Training Event, everything works except on IE8. (could be that this is also a problem in versions lower than IE8 but I don't have access to a machine that runs Windows (I am a MAC user).So if anyone out there is running IE8, I would appreciate if you could put this app thru it's paces and when you get the error - shed some light as to what is not right in the Explorer world that the rest of the world is OK with

View 8 Replies View Related

Iframe Inside A Page - Function Call Is Not Working In Safari And Google Chrome?

Jan 2, 2009

i have an iframe inside a page(main). In that iframe, i am calling a java script function that is in the main page.This function call is working in Mozilla , IE but not in Safari and google chrome?? Is there any specific reason for that? when i add the function in the iframe it works.

View 2 Replies View Related

PNG Background - Page Works Fine In Other Browsers (Chrome - Firefox - Opera - Safari) But Not Good In IE8

Feb 8, 2011

This page [URL] works fine in other browsers(Chrome, Firefox, Opera, Safari), but not good in IE8

View 1 Replies View Related

Showing Error In Home Page In IE7 - 8 But Not In FF

Nov 20, 2009

I have a javascript error in my home page. Which is annoying. I am having hard time debugging it. [URL] FF is not showing it. IE7, 8 shows the error. I just launched the website and I do not want users noticing an error.

View 4 Replies View Related

Jquery :: Google Maps API Page Showing Error With IE6 / 7

Oct 22, 2009

I have a problem with javascript in IE6/IE7, or specifically with jQuery. There is a page that uses the google maps API which shows an error when you navigate to the website and the page remains blank. When I press refresh I get no error and the page loads as it's supposed to (this happens only ie IE6, IE7/8 appear to work fine). The same thing happens with tinymce and the jquery.tinymce.js plugin, which gives an error in IE6/7 but not in IE8. I can't post the URL since it's a password protected "under construction" website. The error for the Google Maps Api I get in IE6 is

Code:
Line: 215
Char: 26
Error: 'firstChild' is null or not an object
Code: 0
URL: -- left out --
And the error for TinyMCE in IE7 starts with

Code:
Line: 53
Char: 3
Error: Permission denied
Code: 0
URL: --left out--
And then when I press "yes" for "Do you want to continue running scripts on this page?" I get

Code:
Line: 19
Char: 7
Error: 'tinymce' is undefined
Code: 0
URL: --left out--

The google maps api page uses $(document).ready( fn ), while TinyMCE uses window.onload. And, as one would expect, in FF, Opera and Chrome all works fine.

View 1 Replies View Related

ScrollTop - Works In IE But Not FF - Chrome Or Safari?

Dec 24, 2009

I've placed this on pages where a ^ top of page link at the bottom is present which animates a scroll back to the top of page, however it only seems to work in IE...

Code:
<script language="JavaScript" type="text/javascript" src="_include/_scripts/jquery.js"></script>
<script language="javascript" type="text/javascript">
$(document).ready(function(){
$('a[href*=#]').click(function() {
if (location.pathname.replace(/^//,'') == this.pathname.replace(/^//,'')
&& location.hostname == this.hostname) {
[Code]...

View 1 Replies View Related

Works In IE But Not Firefox Or Safari Or Chrome?

Jun 2, 2011

why the following works in IE but not the other browsers?

It's the "Select category..." jump menu at this URL: www.savasbeatie.com/books.htm

<TD>
<form name="whichCat" style="margin-bottom:0" method="get">
<select name="catChoice" onChange="sendValue(this);">
<option class="news4" value="javascript:location.reload(true)" selected>Select Category...</option>

[Code]....

I think it has something to do with the ID of the frame, (from Googling the error and reading some other posts,) but can't figure out where to put the tag.

View 2 Replies View Related

Safari And Chrome Not Accepting GetElementsByTagName?

Aug 11, 2010

I'm using getElementsByTagName() to retrieve some elements and do something with them. It works fine in FF but not in Chrome and Safari.

In Chrome it says: "Uncaught TypeError: Cannot call method 'getElementsByTagName' of null"

Here's the code:

Code:
function popUpSAPWindow(){
// Find all links in the page and put them into an array.
//Below is the line that gives me trouble
var linksInOrderLinesTable =

[Code]....

View 17 Replies View Related

Script Works Except In Safari And Chrome?

Jan 27, 2011

I've written some Javascript to do a few small things on a page, and was excited that it actually worked, even in IE! until I tested in Safari-for-Windows and Chrome on Windows and Linux. I'm going to assume Safari on a Mac also won't run then.

I have a page with some forms. I need to grab the ones with an id starting with "formMaat" (may have a number after it), hide the submit button, and add an onchange event to the lone dropdown select in the form.

Safari and Chrome are removing the submit fine, so they are finding the forms ok.

The onchange event is just supposed to submit the form... I had to imitate the behaviour of the old site but make it accessible to those without JS.

I ended up using a closure to get the "form" passed to the select element because otherwise "form" was unknown... and I can't tell if that's maybe what's tripping up Saffy-Chrome or not. I set a breakpoint in Chrome's developer thingie but I can't figure out how to see the script run when I click on the select.

One of the pages currently: [URL]

The forms in question are on the right/main part of the page, where it says "maat:".

Code:
<form action="http://ishtml5readyyet.com/" method="get" id="formMaat">
<fieldset>
<legend><span>Kies een maat en krijg de juiste prijs en voorraadstatus</span></legend>

[Code]....

Do I really need that closure? When I didn't have it, optie.form.submit() or this.form.submit() did not run and I thought it should have, since "optie" was known... I thought ".form" would have just looked for that element's form anyway, but it didn't. *edit tried a simpler way, but still no love from Saffy-Chrome.

I know I don't need to really separate that function over to outside init, except who knows if later more events will need to trigger more weird stuff... so I'm trying to write safely.

I thought Safari and Chrome now have different Javascript engines?

View 3 Replies View Related

Radio Buttons Ignored By Chrome / Safari

Jun 14, 2011

I have this script that performs a simple calculation and outputs the result. The problem is that Chrome and Safari (WebKit browsers) ignore the radio button. The calculator is at [URL] (I've removed a lot of stuff for clarity). HTML validates (except for form action, since there is none).

View 5 Replies View Related

Hidden Control's Value Is Not Showing In Javascript On MAC Safari

Sep 7, 2005

I'm using input hidden control's value in the javascript function.

same code is working fine on all other browser except a specific
version of safari(i.e.: MAC OS 10.3.7 and Safari 1.2.4).

problem:
control's value is not getting displaying at the first time
when the page gets load, although the same piece of code would work if
I just refresh the page, strage.

declaration of hidden control:
<INPUT id="hSliders" type="hidden" runat="server">

javascript code which is calling the value of hSliders:

alert(document.Form1.hSliders.value)

this alert is showing nothing although it should display string.

i check the view source also control's value is getting populated.

View 1 Replies View Related

JQuery :: Dropdown Works In FF And IE But Not Safari, Chrome & Ope?

Jul 28, 2009

I created a drop down menu (i think i followed a tutorial but it was so long ago i can't remember) which works 100% perfectly in firefox and internet explorer but not opera, safari and chrome. I really want to get it working in all of them though.The Jquery Code:

var $j= jQuery.noConflict();
$j(document).ready(function(){
$j(".message_body").hide();

[code]....

View 1 Replies View Related

JQuery :: Only Working In Safari (mac) And Not For Firefox Or Chrome?

Sep 15, 2010

Why is jQuery only working in Safari (mac) and not for Firefox or Chrome?

[URL]

View 13 Replies View Related

JQuery :: Safari And Chrome Code Execution?

Jun 9, 2009

I'm developing with jQuery quite long right now, but recently I spotted one big problem with execution of jQuery code in Safari and Chrome. So everything is working fine in these browsers until jQuery code is placed in one page. But when using for example tabs plug-in loaded with ajax and on this loaded page exists some extra jQuery code it isn't executed.Co page is loaded but nothing is happening with code which was included. This problem doesn't exists in IE, FF or Opera. It appears only in Safari and Chrome. The same problem is when I'm loading page with $.get, $.post or $.ajax query. So it doesn't affect tabs plug-in but
overall functionality. I was checking that with latest versions of jQuery and UI today.

View 3 Replies View Related

JQuery :: Selectors In MozillaFirefox Vs. Safari/Chrome?

Jul 10, 2010

there is a html element:

[Code]...

View 5 Replies View Related

Stopped Working In Chrome/Safari - Still Works In IE

Dec 15, 2010

I am using javascript to change the buttons on my website so that they load up a different image when hot spots on the buttons are hovered over.

Everything has been working great, but this morning I tried checking out my site and for some reason the javascript wasn't working in Chrome, or on my iphone using Safari. I tried it in IE and everything still works.

Any ideas on why it would stop working for those two browsers?

Here is the javascript:

I'm not sure if seeing the html the js is referencing will help at all, but here it is just in case:

View 1 Replies View Related

Onclick Option Value Not Working In IE Chrome Safari?

May 4, 2011

I have been developing a code for changing currency on onclick

here is a demo code

<form id="setCurrency" action="{$request_uri}" method="post">
<select name="language" class="language">
<option value="">Select Currency</option>

[code]...

It works fine for firefox but not for all browser

View 1 Replies View Related

IE8 / Firefox Not Rendering An Iframe Like Chrome And Safari Does - Fix It?

Mar 14, 2011

The following link when viewed with Chrome (Windows XP) the contents of the iframe take up the remainder of the window and looks fine. When viewed with IE8 (Windows XP) or Firefox (Windows XP) the contents of the iframe shows up in a much smaller scroll box window that is only using a small percentage of the available window.

Safari (Mac OSX) also renders the iframe the same way as Chrome.

Firefox (Max OSX) has the same rendering problem as Firefox (XP).

What coding changes do I need to make so that IE8 and Firefox act like Chrome and Safari and use the rest of the window for the iframe contents.

View 3 Replies View Related

JQuery :: Flickering With Accordion - Chrome Or Safari

Nov 30, 2011

I have a small accordion I'm using for a menu for a local A&W francise (Demo: [URL] When you view it in either Chrome or Safari, you get a flickering that is quite annoying. Does anyone know what is causing this or how to fix it?

View 1 Replies View Related

Invisible In IE7/IE8, Displays Properly In FF/Safari/Chrome?

Nov 19, 2010

I'm working on a page that displays a query result upon loading, and has a DIV that (initially) is invisible and has 0px for height/width, plus a negative z-index. This DIV contains an iFrame that has a form in it for filtering the query. Upon clicking a link, javascript goes into action, giving the div height, width, visibility, and a high z-index so it "floats" above the main page (centered in the browser window.)

This is working flawlessly in FF, Safari, and Chrome. However, in IE7 and IE8, not only is the javascript engine slow and clunky, but once the DIV "appears" the form contained within is invisible (view source shows the code, it just isn't being parsed or displayed.) I'll include my code; can anyone think of a reason why it would show the DIV but not the form in IE7/8?

CSS
Code:
#inner_vi.hidden {
height:0px; width:0px; min-height:0px; min-width:0px; max-height:0px; max-width:0px;
display:none; visibility:hidden; background-color:#FFF; z-index:-11;
padding:0px; margin:0px; border:0px; position:absolute;
opacity:0.0; filter: alpha(opacity=0); top:0px; left:0px; zoom:1;

[Code]...

View 6 Replies View Related

IE8 / Firefox Not Rendering An Iframe Like Chrome And Safari Does?

Mar 14, 2011

The following link when viewed with Chrome (Windows XP) the contents of the iframe take up the remainder of the window and looks fine. When viewed with IE8 (Windows XP) or Firefox (Windows XP) the contents of the iframe shows up in a much smaller scroll box window that is only using a small percentage of the available window.

[URL]

Safari (Mac OSX) also renders the iframe the same way as Chrome.Firefox (Max OSX) has the same rendering problem as Firefox (XP).What do I need to do to make IE8 and Firefox act like Chrome and Safari and use the rest of the window for the iframe contents.

View 4 Replies View Related

Set Caret Position In Safari And Google Chrome

Jul 7, 2011

I'm creating a custom text box.that's an easy thing to do for me but I encounter some problems on the javascript part.in the onfocus event of the textbox I try to get the caret position on the start.it works perfect on FF, IE and opera but I just can't get it to work in safari and google chrome. I found out both browsers use webkit but have no idea how you do it for the 2 browsers.I'm using asp.net ajax components for javascript and this works for the 3 browsers get_inputElement() = my textbox

View 6 Replies View Related

Ajax :: Call Fails In Chrome And Safari

Jul 13, 2011

I have been trying to fix Ajax call for Chrome and Safari and going nowhere.Somehow when the request is sent to the server, UPC gets blank even though upc has some value.This works in Firefox and IE.

View 7 Replies View Related

JQuery :: Cycle Showing Last Image First In Chrome?

Aug 5, 2010

This is something of a continuation from my previous problem[URL]The images seem to be showing properly the first time. Unfortunately, when the slide show starts, Chrome is showing the last image in the group first. This wouldn't be a problem normally, but I plan in showing the images in an order based on their last modified info.

View 4 Replies View Related

JQuery :: Chrome & Safari - Not Answering InArray Correctly?

Jun 25, 2010

I'm using inArray() to check an XML tag against an array called status[]. If the result != -1, then do one set of instructions, else, the item is 'available' so do another set of instructions. Each entry of my XML document has a <status> tag, which will contain one of 3 values, or a 4th option 'available'. I have an array setup called status['sold', 'pending', 'reduced']. If the <status>.text() is one of these 3 values, then we'll get the array position, if it's 'available' we should get -1.

When I run this in Firefox (3.6) & IE (8.0 or Comp Mode) it works fine. However, when I run this in Safari (4 or 5) & Chrome, it returns the value -1 for each of the entries. The 3rd, 5th, & 7th entries are all set to <status> 'sold' and inArray() should be returning a 0.

[Code]...

View 3 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved