Passes Applet Parameter Fine In FF And Chrome But Not IE
Jan 25, 2011
I am trying to pass a screen resolution parameter to a java applet so that it will appear in full screen mode when it launches. This is working fine in Firefox and Chrome but not in IE8.
I've made a web based tool that times how long a web page takes to load in an iframe and today I redesigned it but now it has issues. When I load it in Chrome and Opera the new version works fine but in FF 3.6 and IE 8 only the footer area is displayed. I have added the links below - You'll be able to access the code via your browser's "View page Source" option.
URLs: New test (With problem): [URL] Old test (Works perfectly): [URL]
I am pretty new to Javascript having a bit of a problem with a website with Google Maps integrated. URL I have two checkboxes (ccCheck and caccCheck). The basis is when the box is ticked, it overlays a KML onto the map. This is working fine in Chrome, but in FF and IE it doesn't work, IE returns 'ccCheck is Undefined'. The code I am using is in the JS file, the bit it gets stuck at is as follows:
[Code]...
If I stick a ccCheck = document.getElementById('ccCheck') within the onclick function (before the if statement), it places the overlay onto the map, but then when I untick the box it just stays there. It's such a simple thing (I think), and must be down to IE being pedantic about declaring the variable properly, the question is how should I be doing this?
I'm using Cluetip to display some additional information.It all works fine in FF.In IE I see a message that the file could not get loaded. In Safari and Chrome I don't see the "mehr" button at all.[URL]..
It does NOT work fine in IE8 or Safari. In both these browsers the height of the DIV that's being set is usually shorter than the other DIV it's being aligned with.Here's the code I'm using to resize the problematic DIV:
Function resize(height) { $(document).ready(function(){ var div = $( "#annoucement-area-243" );
just started using jQuery,and i'm having a problem using the function .show()/.hide() to make a div appear and disapear when a certain option value is selected.It's working fine in firefox but not working at all in chrome and IE 8.This is the function code i'm using :
I am not very good with javascript yet and I do not know how to debug this issue. Can y'all take a look and point me in the right direction? I've got a site that just lauched. The address is: www [DOT] saenzcleaning {dot} com The issue is that it seems to be crashing/freezing IE, but works fine in FF, Opera, and Chrome
I have used the swfobject.js file & its methods to play a flash movie in my webpage. It works fine when I open the page in firefox & chrome but does not work in IE-6. Below is the code i used:
I am trying to play a video from javascript using the WMP plugin in IE.It works fine in Firefox and Chrome, but not IE.[code]This doesn't play the video in IE8.It works if I use the SRC parameter when I embed the player, but I need the video to change when I click on buttons.
How do I display a message applet is loading when a applet is getting loaded. Without using Mediatracker.I want the message to be provided as PARAM NAME.
How to write some jQuery that runs a fadeIn after a minute passes after the script has loaded. I know how to write it without the time waiting....
Code HTML4Strict: <!doctype HTML> <html lang="en"> <head> <meta charset="utf-8"> <title>Fading with jQuery></title> <script type="text/javascript" src="[URL]"> <script type="text/javascript"> $(document).ready(function() { ('.hidden').fadeIn(); }); </script></head><body> <p class="shown"> While you are reading this text you will see some more fade in underneath</p> <br/> <p class="hidden">I have just faded in!</p> </body> </html>
Is there something like $(document.wait(60s, function() { /*......jQuery here */
I have a parent/child scenario where the child is a pop-up "control panel" with hyperlinks that control the parent page. The idea is to click a link and it changes the parent to whatever URL ...BUT... the kicker here is that the parent page is in PHP and is receiving a value from the javascript function.I have everything working EXCEPT that I can't get the value from the hyperlink that i need to pass to the PHP.Everything I fund about getting values in JS involves a "getElementby ID" type of command, but that isn't going to work here because there are several hyperlinks. I'm also trying to avoid using an array and looping through it.I know this must be a simple problem for veteran Javascripters!HTML FROM CHILD (I made the ID and Value both "2" just for testing purposes):
<a href="#" class="leftlinks" onclick="updateParent(control)" id="2" value="2">CLICK HERE</a> JAVASCRIPT ACCEPTING THE VALUE: function updateParent(control) {
I'm probably not writing this the proper way, but I have code that almost works. $("#submit_button").click(function(){ $(".product").each(function(){ if ($(this).val() == '' ) { $("#product_failed").css("display", "inline"); $("#myForm").submit(function(){ return false; });//end submit false }else{ $("#product_failed").css("display", "none"); $("#myForm").submit(); };//end if });//end .product each function });//end submit button click The error message shows and hides properly based on whether the select menu value is "" or not, but if the value is not "" the form doesn't submit.
For simplicity and debugging, I attempt to display an apple when the mouse passes over the center of an image.In IE, the mouseover hand shows as the mouse passes over the center of the image and the apple is displayed.In FF, the mouseover hand shows as the mouse passes over the center of the image but the apple does not display.(By the way, I'm certain the showhide function is fine,
I have an ajax function which passes form field values to a PHP script which in turn saves the data to my database. all works great.
I now need to add a file input to my form and pass the file upload ot the same PHP script.
I have read an article [url] which explains how to do this but this would suggest it is a completely separate function.
My question is, is there anyway I can expand my existing function (below) to inlude the file upload process to save having 2 functions doing the same process?
We have an app that uses a page to either load a full page applet, or some html based on some params.
There are events trapped for rigth click actions that show a DIV with some menu options. Works fine with the HTML...
But, of course, by default the Applet seems to take precedence over any DIV etc on top.
I already feed the events back from the applet back through to the HTML via javascript, what I need to do is display the div over the applet so that thet user knows no different...
I just installed the LoveSan security patch from MSFT and turned on Auto-Update. Now applets do not load. I tried getting Netscape 7.1 but it directs me to the Sun page to install JRE. I do this but still neither IE or NS will load applets. Tried downloading some from various websites with free applets but these do not work either. Any ideas?
I have on a html page an applet. A javascript function call one function of this applet. It works with IE but not with Mozilla or Netscape. I obtain the following error on the java-plugin consol:
sun.plugin.liveconnect.OriginNotAllowedException: Javascript is not form the same origin as je java code ...
This is my html code:
<script language="Javascript"> <!-- function askServerCmd() { return document.AppReaderLink.askServerCmd();
I wish to get the pixels os an image to transform it. There is any posibility to do this with javascript ? I have done with java, but I can't load web images from other http servers, can I send the data of the image to the applet ?