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.
Here is the code:
View 2 Replies
ADVERTISEMENT
Mar 3, 2011
[Code],,,,
It freezes in Internet Explorer; but works fine in Chrome.
View 49 Replies
View Related
May 24, 2010
I am using the following code to to make an ajax request for a page and then injecting the response into a div in the current page
$.ajax({
type: "GET",
url: 'test.htm',
[code]....
View 8 Replies
View Related
Jul 11, 2010
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]
View 2 Replies
View Related
Mar 7, 2011
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?
View 5 Replies
View Related
May 30, 2010
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]..
View 1 Replies
View Related
Aug 1, 2010
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" );
[code]......
View 8 Replies
View Related
Mar 5, 2011
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 :
$(function(){
$("#produtos").click(function(){
$("#produtos_valor").show("slow");
[code]....
View 3 Replies
View Related
May 29, 2011
This script working great on FireFox and Chrome but on IE it loads the pages without sending the parameters
[Code]....
View 3 Replies
View Related
Feb 13, 2010
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
View 1 Replies
View Related
Jun 23, 2009
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:
<script type="text/javascript" src="<%= request.getContextPath() %>/js/
swfobject.js"></script>
<script type="text/javascript">[code]....
View 1 Replies
View Related
Mar 23, 2010
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.
View 3 Replies
View Related
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
Apr 8, 2006
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.
View 1 Replies
View Related
Feb 10, 2010
The following code is working fine only in IE. when i click on the calender img, calender window is not coming up in firefox/chrome.
[Code]....
View 8 Replies
View Related
Dec 16, 2010
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 */
View 6 Replies
View Related
Oct 22, 2010
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) {
[code]....
View 2 Replies
View Related
Nov 12, 2010
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.
View 5 Replies
View Related
Apr 24, 2009
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,
<div id="Core" style="position:absolute; width:209px; height:115px; z-index:4; top:212px; left:28px; visibility: hidden"><font color="#000000"><img src="apple.jpg" width="125" height="140"></font></div>[code]....
View 3 Replies
View Related
Nov 24, 2011
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?
My Code:
Code:
View 1 Replies
View Related
Jan 25, 2005
Anybody who knows how to embed a Java-applet in a HTA document ?
View 2 Replies
View Related
Jul 23, 2005
Why doesn't the following code load my applet under WinXP with Internet Explorer 6?
<SCRIPT language="javascript" type="text/javascript">...
View 1 Replies
View Related
Jul 23, 2005
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...
Can this be done?
View 2 Replies
View Related
Jul 20, 2005
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?
View 1 Replies
View Related
Jul 20, 2005
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();
}
//-->
</script>
<applet CODE =" AppReaderLink.class"
codebase="."
ARCHIVE ="appredl.jar"
WIDTH =" 130"
HEIGHT =" 70"
NAME =" AppReaderLink"[color=blue]
>[/color]
</applet>
I tri with jre 1.4.1_05 and jre 1.4.2_02 and I obtain the same thing.
What I have to do?
View 1 Replies
View Related
Jul 23, 2005
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 ?
View 3 Replies
View Related