JQuery :: Short Function Not Always Working Properly

Apr 11, 2009

Looking at the sample code below, if you click the same link over and over, I get the desired result / animation of the revealed div. If however you click 'link 2' then any link except 'link 2' the animation is different. What do I need to change in my logic to always get the desired result despite which link was clicked?

[Code]...

View 2 Replies


ADVERTISEMENT

Sorting Function Not Working Properly?

Nov 14, 2010

I am having a problem where the sorting function I have designed is supposed to sort an array of records into descending order in terms of each record's "score" value, I would expect the below code to alert 2,1,0 in that order but it's as if the code didn't even sort it.

var g=[{score:0,index:0},{score:2,index:1},{score:1,index:2}]
function sortScores(scoreRecs){
var swapped;

[code]....

View 5 Replies View Related

JQuery :: Confirm Password EqualTo Function Of Validate Plugin Are Not Working Properly In Firefox3.0.10 And Firefox2.0

May 11, 2009

Is there any body known about this problem?

My code:
//js code
“data[User][password]“: {
required: true,

[Code]....

View 3 Replies View Related

InnerHTML Function Not Working Properly In Firefox?

Oct 15, 2010

I'm having an issue with Firefox and the innerHTML code. My index file has the following html body code in it:
Code:
<div id="testBox" style="text-align: center; color:white;">
test text
</div>

Then, in a separate html document loaded through an iframe, I have the following code that works great in IE but not in Firefox:
Code:
<SCRIPT type="text/javascript">
function ChangeML(){
parent.testBox.innerHTML ='text has been changed';
};
</script>

The function ChangeML is called on a click event using MooTools, but I figured that part isn't what's causing the problems because everything else works fine. No error seems to be reported ... it just skips right over this piece of code.

View 5 Replies View Related

Changing Picture Script - Copy / Paste Function Not Working Properly

Nov 18, 2011

I have this code and when you click on the first set of them (a specific one) it copies it and then when you click on one of the other ones it pastes it but its not working properly. (If you need to you can put an other image in there)

<script>
var change = new Array
change [0] = [0,0,0,0,0];
change [1] = [0,0,0,0,0];
change [2] = ["",0];
change [3] = [0,0,0,0,0];
function equipaa(){
change [0][0] = 1
change [0][4] = 0
change [0][1] = 0
change [0][2] = 0
change [0][3] = 0
changea();
} .....

View 5 Replies View Related

Short Script--only Working In IE?

Apr 9, 2010

I've been tasked with fixing a problem on a site that I didn't develop, but in a nutshell somebody wrote a little Javascript that appears to only be working in IE. I'm not sure why...would anybody be kind enough to have a quick look?Page in question is: http://www.thomastonauction.com/newA...eSignature.phpThe script not working is in the head of that page, and looks like this:Code:<!--this appears to be the script that is called when users click the "submit to thomaston auction" button,which should trigger an email containing the bid info. to "auction@kajav.com" and open a printable copy of the bid in a new window ("newAbsenteePrintForm.php")-->

<script language="JavaScript" type="text/JavaScript">
function openPrintForm(sid)
{

[code]....

View 8 Replies View Related

List Indexes - Short Function Without Options?

Jan 21, 2010

I have 2 lists and function to clean them
function del_sel(option){
if (option == "1"){
document.forms[0].list1.innerHTML = '';
}if (option == "2"){
document.forms[0].list2.innerHTML = '';
}}

How to make this function shorter & without options? Something like that:
function del_sel(option){
document.forms[0].option.innerHTML = '';
}

The problem is that this code returns mistake:
function del_sel(option){
document.forms[0].option.innerHTML = '';
}
...
<input type='button' value='Delete onclick='del_sel(form.list1);>

View 2 Replies View Related

JQuery :: Code Not Working Properly In IE?

Mar 22, 2010

i have a select dropdown list working fine in firefox...but in IE it is not dynamically changing.i am using Jquery 1.32here is my code

$(function() {
$(document).ready(function() {
$('#provider').load("ajax/order.php?atask=getallproviders", {

[code]....

View 1 Replies View Related

JQuery :: Nth-child(5n) Is Not Working Properly?

Jul 6, 2010

[URL] why the 4th elements are getting selected by

$(".entry-summary:nth-child(5n)").addClass("last");

You can try the following code in Firebug console to debug:

$('.entry-summary').removeClass('last');
$('.entry-summary:nth-child(5n)').addClass('last');

View 2 Replies View Related

Open Window Not Working Properly In Firefox But Is Working In IE

Feb 6, 2009

The Open Window in Javascript is not working properly in Firefox but is working in IE. What could the reason be?

[Code]...

View 1 Replies View Related

JQuery :: Buttonset() Span Not Working Properly With IE7?

Jul 19, 2011

I'm using the lastest version of jquery and I themed a list of checkbox with it. Im IE7 every time a user clicks on the buttonset span(which is pretty much the whole button as far as the users are concerned) the page gets scrolled up about 600pixels up.

This is really not a good thing, especially since those radios are located pretty far down a page with a scrolling bar, can you image the users who want to select 60 options? Having to scroll back down every time? How do I stop this infernal Jquery behavior? I literally use nothing else but this to these my radios:

$(".prettyme br").replaceWith(''); //fix RadioButtonList Bug
$(".prettyme").buttonset();

I really need some help on this, I spent hours trying to fix this.

View 4 Replies View Related

JQuery :: Date Picker Not Working Properly In IE 7?

Oct 18, 2010

The Date J query Date Picker Not working properly in IE 7

View 1 Replies View Related

JQuery :: Images Resizing Not Working Properly?

Apr 20, 2011

I have a lot of images on a page and the have to be a little bit larger, so i dont want to change all of the css.I have made a couple of lines of code which doesn't give the right values back.The images have all diffrent sizes.

$('.imgbox').each(function(){
var getX = $(this).width();
var getY = $(this).height();[code]....

there's probably some thing wrong because it gives me very big values back.

View 2 Replies View Related

JQuery :: Unbind (Keydown) Not Working Properly

Jan 26, 2010

I have a slight problem in FF3.5 that unbind('keydown'); is not working properly..
$("#q").unbind('keydown');
$("#q").keydown(function(e){
var code = (e.keyCode ? e.keyCode : e.which);
if(code==40 || code==38) {
var totalResults=$("#quick-search-results li");
var selectedResults=$("#quick-search-results li.qs-selected");
if(code==40) {
var nodeIndex=($("#quick-search-results li.qs-selected").length<=0) ? 0 : $("#quick-search-results").index('li.qs-selected');
alert(nodeIndex);
}}}); // end keydown

The above code alerts once on first keydown (with the down arrow key [code==40]), twice on the second, three times on the third and so on.. it worked fine in FF3 but a recent upgrade to FF3.5 seems to have broken the functionality..

View 3 Replies View Related

JQuery :: Jslider Not Working Properly On Webserver?

Oct 28, 2011

i m using jslider on my page working properly on my localhost server but after uploading files through ftp it is not working, only the left and right arrows have been shown.

View 1 Replies View Related

JQuery :: Toggle() On A Link In IE8 Not Working Properly?

Jan 18, 2011

I have ran into an issue, where the toggle() on a link is not toggling between the two.

$(".toggle a").click(function(event) {
event.preventDefault();
$('a', $(this).parent()).toggle()
});

[Code].....

When I click Existing members, it dissapears and Close Login appears. When I click Clos Login panel it dissapears but Existing Members does not re-appear.

I have tried using toggleClass() as well as using :hidden & :visible selectors. I am at wits end.

View 3 Replies View Related

JQuery :: Click Event Not Working Properly In IE

Sep 17, 2010

I have a div (#disclaimer) that has the css property of "display:none." The following jquery script is supposed to show it when the #test select option is clicked. The #quest,#comp,and #other divs are supposed to hide it again. It works fine in FF but does not work in IE. I have narrowed the reason down to the .click event on the select menu because it works fine on regular text.

[Code]...

View 2 Replies View Related

Jquery :: Lightbox Script Not Working Properly

Nov 20, 2009

I am having some issues with my lightbox. It won't work for a strange reason. Here is the site: [URL]. Here is the code for the site: [URL]. I get no errors in Firefox debug.

View 5 Replies View Related

JQuery :: Delay And Load Not Working Properly In Conjunction?

Jul 30, 2010

On this web site I'm developing for a client, he wants to have a simple search form on his main page, then, when the link for 'advanced' search is clicked, that form should be replaced by a more advanced search form. My solution works, but there's one problem. The advanced form can be seen before the simple form has been completely hidden, despite there being a delay function call before it. Any reason why delay doesn't seem to do its job here?

$('#search').hide('slow').delay(2000).load('search.php', '', function() {
$(this).show('slow');
});

View 5 Replies View Related

JQuery :: CycleAll Plugin Effect Not Working Properly In IE?

Aug 11, 2011

The jQuery 'cycleall' fade in effect does not work when I try it in IE. I've tried it in Chrome and Safari so far and it works fine. If I try another effect it seems to cut out half way through for some reason.

Here is the code:

<
scripttype
=
"text/javascript"
>

[Code].....

View 1 Replies View Related

JQuery :: Drop Menu Not Working Properly In IE And Firefox?

Jun 1, 2011

i am trying to create a very simple drop menu using jquery, bt when i am attaching the event to li's which have further ul inside it, it showing very strange behavior in firefox and in IE, it not showing propely the sub menu, zindex problem.

the complete code is here

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Untitled Page</title>
<style type="text/css">

[Code].....

View 1 Replies View Related

JQuery :: Slideshow Not Working Properly In Google Chrome?

Aug 23, 2011

I am using a jQuery Slideshow on a website homepage that I am helping to develop.

The homepage can be seen here: [URL].. This site is currently in production and I am trying to make some improvements at the moment. But I cannot understand why the slideshow isn't behaving correctly in Chrome. I'll tell you what it is supposed to do.

1) Page loads... slideshow begins to loop through 4 slides, each linking to an article on the website.2) When you click on a thumbnail on the right of the slideshow, it should bring that slide into focus - You can then click on the "Read More" link in the description at the bottom of the main photo to go to that article.

Now here is what it is actually doing. 1) Page loads - slideshow begins to loop through the 4 slides, this is working.2) Click on a thumbnail and it does focus on that slide but it only brings up the image... the section containing the information/description and the link to the article is missing.3) The slideshow then continues to loop through the slides as usual but each time it comes to the slide you previously brought into focus, the information at the bottom is missing.

I have checked in other browsers and this does not appear to be happening. I have also checked in earlier versions of Chrome and this did not happen - It is only happening with the latest version of Chrome.

View 1 Replies View Related

Jquery :: Cycle Through List Items Not Working Properly

Jul 1, 2009

I've been working with a little script from URL... but it doesn't seem to loop through the entire list.It works properly if I leave an empty list item in the UL - but that is not ideal.If i leave the count at 0, it leaves the final list item blank.

View 2 Replies View Related

JQuery :: Cycler Not Working Properly When 20th Slide Added

Oct 23, 2011

I've now got my slideshow working with png captions flying in from the right. This was working perfectly but when I added the 20th slide the captions are no longer working properly, they seem to be disappearing behind the image. And when I add the 21st slide the captions stop working all together. Link below: [URL]

View 2 Replies View Related

JQuery :: FadeIn() On Elements With Alpha Filter Not Working Properly In IE

Jun 2, 2009

I am running into an effect issue with IE only. I have a <UL> with about 4 <LI> and I apply the fadeIn() on individual <LI> based on user actions. Inside of each <LI> I have a div that is styled with: -moz-opacity:.8; opacity:0.80; filter:alpha(opacity=80); The problem is that when I fadeIn() the <LI> all of its children elements' opacity is taken from 0 to 100%, AND THEN the div that is styled with the opacity is taken back to 80%. This causes sort of a flicker because it goes from 0% to 100% and then quickly back to 80%. Is there a way to get around this? Is that a known bug? I saw some people that had posted similar questions but without answers: [URL] I am pressed for time to deliver a page and this is virtually the only issue holding me back! additional info: using: jquery-1.3.2.min.js

View 2 Replies View Related

JQuery :: Table Sorter 2.0 Date Format Not Working Properly

Jul 29, 2009

I am using the date format "dd/mm/yy" but it is not working properly, below is the example how it get sort in
ascending order

11/09/2007
25/12/2006
10/01/2008
12/07/2008
13/05/2009
14/06/2009
[Code]...

View 1 Replies View Related







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