jquery

Why do I get nothing with $('#leftquota').val()?

<span id="leftquota" style="display:none" value="$row[available]">$row[available]</span> JQuery code: var left=$('#leftquota').val(); alert(left); ...

How to use jQuery in a facebook application.

Hi all, I finished my application in locale and I want to integrate it in facebook creating an app. My application works well, but when I try to load it from facebook it doen't work. I've read that there's some problem including javascript that are not FBJS. I'm not using the facebook markup language but mine ( jQuery UI and simply htm...

Ordered parsing of XML by jquery

I have a xml file like, <step_list Number="5"> <step Program="P1" Step="STEP01" Seq="1"> </step> <step Program="P2" Step="STEP02" Seq="3"> </step> <step Program="P3" Step="STEP03" Seq="2"> </step> <step Program="P4" Step="STEP04" Seq="5"> </step> <step Program="P5" Step="STEP05" Seq="4"> </step> ...

Hiding Rows Via Drop Down Lists

I have this weird issue with hiding/showing rows of a table via jQuery and drop down lists. Instead of posting back data based on the filters I just want to hide the data not relevant to what's selected in the drop down lists. Here's the snippet: $().ready(function() { $("#SupplierID").change(changeme); $("#BusinessID").change(cha...

FadeIn FadeOut with Jquery with a twist

I am trying to create a hover over action which brings in a coloured image and also once the hover is removed it fades back to its original image. I got it to the point of fading in the first image with the help Funka and Brad on this forum however i need to get it so it fades out once you hover off. Currently it fades out the image ...

How to solve duplicate objects in dynamic loading page by using jQuery?

I want to solve duplicate objects in dynamic loading content. Please look at the following source code for easier understand. Base Page HTML With 1 Dynamic Loading Content <body> <div id="general-div"></div>> <div id="div1"></div> <div id="placeholder1"> Dynamic Content will be placed inside this. <...

How to conduct arithmetic operations in JQuery?

var price = $('#addprice').val(); var pass = $('#pass').val(); var total = $('#totalprice').attr('value') var left = $('#leftquota').attr('value') var balance = $('#balance').attr('value') var tprice = total + price; // total price var bprice = balance + price; // balance price var unitprice = bprice / left; ...

jQuery Striping with Some Elements Hidden

I have a jQuery selector like the following: $('.someClass div div .specificChildClass:nth-child(even)').addClass('alternateLine'); This stripes just as I want it to UNLESS there's a hidden element. I need the selector to take hidden elements into account and NOT factor them in to the striping. This way, the visible elements are str...

Jquery .next IE6/7 issue

I've been having nothing but problems with this script for a simple hide/show gallery of testimonials. I think the java is somewhat self explanatory... When the page loads, I tell it to show the first testimonial in the line up (as the css is display:none) and gives it a selected class name. Works fine in across the board. On click I ...

jquery insert html into list before a child ul-tag

Hello I have this: <ul id="pickme"> <li>1</li> <li>2</li> <li>3 <ul> <li>3-1</li> </ul> </li> </ul> But want this: <ul id="pickme"> <li>1</li> <li>2</li> <li>3</li> <li class="new_ul"> <ul> <li>3-1</li> </ul> </li> </ul> With other words I need to ...

Jquery - Getting all values of a multi select list

I am trying to use JQuery to get all of the the values that are in a multiple select box. I currently have a picklist thing going on where users are selected in a select list box and then added to the PickList box. I am trying to use JQuery to get a somewhat formatted list (formatted with spaces) so I can parse that list later on. I am a...

Problem with jquery ajax in Opera and Google Chrome

I have a page where I need to add a drag and drop functionality to certain elements. When the drop event occurs, it makes an ajax call to a php function and then refreshes the contents of a div. I'm using jQuery with jQueryUI for the drag and drop, and CakePHP as a PHP framework (not sure if this is relevant). Everything is working just...

jquery: auto-size absolute-positioned child div

hi, i'm having the following markup using 2 divs. the #child div has set position:absolute; +------------------------------+ | +----------+ | | | #child | | | +----------+ | | | | | | | +--------------...

How to show popup message from server side

work on asp.net vs05. i know how to show popup ,in my below syntax i show a popup when a page is load.But i want to show this popup after some action occur on server ,i have a button ,under this button event i want to do some work on server side ,then i want to show popup message .Here is my complete syntax that can show popup <%@ Page ...

Showing a div while page is loading, hiding when its done

I want to show a div with a loading animation over my page while the page loads some XML content. Once its loaded, I want to hide this div. How can I go about doing this? ...

jQuery find() returning an empty string in Google Chrome

I'm using jQuery to setup an Ajax request that grabs an XML feed from a PHP script and then parses some information out of the feed and inserts it into the DOM. It works fine in Firefox; however, in Chrome, I am getting an empty string for the title element. Here's the basic setup of the Ajax request: $.get('feed.php', function(oXmlDoc...

Why the expression for live needs to be evaluated in jQuery

The following question is inspired by this blog entry at ajaxian.com and this comment by paul irish. Here is a way to declare live event. $("li a").live(...) As per this blog entry, it is my understanding that live events are nothing but a catch all at the document level. Any event that bubbles all the way to the top are caught by l...

Searching a Jquery Cycle Pluggin for Mootools

Hi, im looking for something like this: http://www.malsup.com/jquery/cycle/basic.html but made in mootools, do you know about one? :) thxs. ...

jQuery form validation problem.

I'm using the following code (via 'Dark Side of the Carton') to validate a reCAPTCHA field, before submitting the rest of a form that includes the captcha field. The validation works fine, the 'recaptchavalidate' page is called, returns True or False correctly and the JavaScript picks this all up (I test this via alert(html);). However...

jQuery Accordion and Navigation Issues

I am working on a site for a client and have run into a problem with the side navigation after adding jQuery Accordion to the main content area of the page. On this page: http://projectpath.ideapeoplesite.com/rutland/printing-whiteplastisolinks.html if you click on Products in the right hand sub-navigation bar nothing happens. I am not ...