JQuery :: Conflict Crashing IE - Works Fine In FF - Opera And Chrome
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
ADVERTISEMENT
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
Aug 7, 2009
The following code is needed for the prettyphoto javascript popup. It works fine in Firefox and Safari, but not in any version of IE.
<script>
jQuery.noConflict();
$(document).ready(function(){
jQuery("a[rel^='prettyPhoto']").prettyPhoto();
});
</script>
View 1 Replies
View Related
Nov 12, 2011
Could anyone tell me why this script of mine works fine in firefox but not in IE or Opera?
<script>
$(function() {
$( "#search" ).autocomplete({
source: function( request, response ) {
var wildcard = { "name": "*"+request.term+"*" };
var postData = {
[Code]...
View 2 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
Sep 2, 2010
I have been trying to run two Javascripts within the same page. The first is the Drop down menu Javascript, the second is the Picture Viewer (Click an image and it opens) Here is a copy of the webpage (the active version has been modified to reduce confusion for users) [URL] I have tried a noconflict, but it didn't seem to work. As you can see, the Picture viewer works fine, but the drop down menu seems to be in conflict.
View 16 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
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
Mar 3, 2011
[Code],,,,
It freezes in Internet Explorer; but works fine in Chrome.
View 49 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
Oct 30, 2010
I have two select lists that have option lists that are created from external XML lists that contain course offerings available at different locations. Each location has a different set of course offerings. When a user selects a location, the javascript code will hide / show the option entries that correspond to the course offerings for that location. If a user selects a course offering, the javascript code will show / hide the locations that offer those courses.
Click events are attached to each of the Option entries with the code below. The code works correctly with Firefox and Opera, but the click events are never triggered in IE, Safari or Chrome. The Chrome debugger seems to indicate that the click events get set up in Chrome (although I am not sure where JQuery saves event handler data). Each option entry has a unique ID tag.
$(".locn_option_select").click(function (locnevent) { // Set up click action on the option entries
locnevent.preventDefault;[code].......
View 1 Replies
View Related
Aug 8, 2009
The minimal AJAX script below works in Firefox, but not in IE, Opera, or Chrome.I could use some suggestions or referrals to resources that will help me get the script working in other browsers.Before there are six characters entered in the CAPTCHA code field, the 'Send' button is supposed to be disabled. When there are at least six characters in the CAPTCHA code field, the script attempts to verify the CAPTCHA w/AJAX. If it verifies, it enables the Send button and sets the background of the CAPTCHA code field light green (symbolic for go). Otherwise, it turns the background of the CAPTCHA code field a sort of pink/red (symbolic for no go). While it's waiting for a server response the background is set to a pastel yellow. At other times, the background of the code field is white.
View 1 Replies
View Related
Oct 29, 2011
I'm using a nice little script which replaces the usual file upload input with whatever image you want and then with JS makes sure that an invisible 'browse' button is underneath the mouse pointer whenever the mouse is moved over the image you want to use.
It works on every browser ie7 ie8 ie9 FF safari chrome but not on opera. On Opera the regular file input appears.
I've had a good hoke round the 'net and I know there's loads of scripts which do similar things. But either they are too complicated for me to figure out how to use them eg uploadify (bit of a newbie) or they do similar things but just not as well - like making the custom image the same size as the file input would be (there's issues with that too).
Here's the script I'm using - there's not much to it
How come it doesn't work in Opera grrrr... Is there anyway to fix it? This is perfect for what I want apart from not working in Opera.
View 3 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
Feb 13, 2010
This code is generating row in table at Run time. But once I reach up 10 rows which I kept maximum limit after that even I Refresh the Browser and try to do same function its giving error in IE
Line: 31
Char: 6
Error: Invalid Argument
Code: 0
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
[code]...
View 3 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
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
Mar 22, 2011
If you click on IE8 picture is open lightbox, if you open in Opera or Chrome and click on picture - picture open in this same window. Example url
View 1 Replies
View Related
Jul 1, 2009
The submenu works fine with FF, IE8 etc. But it fails with IE7.I have to use sprites background images and the second level sub menu
have to be positioned at a certian place.When I hover top of sub menu, it is ok. But the below of that submenu, such as Radio, Artikler, Hvem er vi?, I am not able to select in IE7.
View 3 Replies
View Related
Jun 15, 2010
The script runs fine in firefox. In internet explorer when the loop runs for the first time, it sets the variables properly but the following times through the loop, my productId and variantId variables are undefined.
$(document).ready(function() {
var size = [];
var productId = [];
var variantId = [];
[Code]......
View 6 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 16, 2011
need help to modify this code to make it work in IE . other browsers works fine.
<
script src="js/jquery-1.5.1.min.js" type="text/javascript" charset="utf-8"></script>
<
[code]....
View 1 Replies
View Related
Jun 17, 2009
I developed a website using jQuery plugins in part of it. Couple of visitors visited the website with internet explorer complained that some part of the website does not function at all. I have Internet Explorer 8 installed and I dont know how to downgrade it.[URL]...
View 3 Replies
View Related
Jun 27, 2009
Cannot close simple modal in Firefox 3 However it works fine in IE?[URL]...
View 1 Replies
View Related
Aug 21, 2011
I've written a jQuery script for a crossfade slide show. My script works fine when I put it it the body section of my HTML. But when I move it to the head, the script no longer works. The div where the images are supposed to appear remains blank. Does this matter? Does this mean that there's a flaw in my script? Should I be worried? Or should I simply leave the script where it is in the body section.
Here's the crossfade slideshow script:
View 2 Replies
View Related
Oct 26, 2010
Friend of mine made this script and it works fine inFF (check url beneath) but it wont load the same way in IE. Well it wont load at all there. Can anyone see the problem right away? Im very new to this and iv'e been looking everywhere to try a find a fix for IE solving my problem, so you are kind of my last hope. My friend couldnt find a fix for it either but we assume the code is good as FF does what its supposed to do.
You can test it here [url]
View 4 Replies
View Related