Re: [jQuery] (validate)

2009-11-21 Thread Tsz Ming WONG
On Sun, Nov 22, 2009 at 11:21 AM, Enoch wrote:

[jQuery] Re: jQuery Cycle Plugin and Captions - Please help!

2009-11-21 Thread Wroathe
You're on the right track!!! I added an alt attribute to the first .featured-image and it displayed exactly where I wanted it!!! The question is now how to select the img tag nested in it (in the interest of writing valid xhtml). On Nov 21, 11:06 pm, Wroathe wrote: > I tried it and it didn't work

[jQuery] Re: jQuery Cycle Plugin and Captions - Please help!

2009-11-21 Thread Wroathe
I tried it and it didn't work Mike. I did a console.log of the alt variable afterwards and it was tossing undefined. I think this is because I have all of the slides wrapped in divs. I'm not sure how to remedy that problem. Is there a way of selecting the img's alt attribute using the code you just

[jQuery] Re: jQuery Cycle Plugin and Captions - Please help!

2009-11-21 Thread Wroathe
I'll give that try and see how it works - thanks in advance for the reply. I really appreciate it. On Nov 21, 7:01 pm, Mike Alsup wrote: > Try using the 'after' callback: > > $(function() { >     $('div#slides').cycle({ >         timeout: 7000, >         pause: 1, >         pager: 'div#buttons',

[jQuery] Jquery autocomplete case

2009-11-21 Thread Julius
Dear all, I'm new in jquery. I want to ask about, how to validate value on auto complete plug in. The value that entered by user, must match with the value in the autocomplete array. How to do that in jquery? May someone give a solution. Thx Sent from my BlackBerry® powered by Sinyal Kuat IN

[jQuery] Re: jQuery Cycle Plugin and Captions - Please help!

2009-11-21 Thread Mike Alsup
Try using the 'after' callback: $(function() { $('div#slides').cycle({ timeout: 7000, pause: 1, pager: 'div#buttons', pagerAnchorBuilder: function(idx) { return '' + idx + ''; }, after: function(curr, next, opts) { var alt

[jQuery] jQuery Cycle Plugin and Captions - Please help!

2009-11-21 Thread Wroathe
Hi there! I'm a little stuck and I was hoping someone could help me. I've been trying to add captions to another div separate from the slideshow and have them cycle with the slideshow and when the user uses the pager. The one catch is I was hoping to use the images in the slideshow's alt attributes

[jQuery] Re: IE8 slow animation

2009-11-21 Thread Jadranko Dragoje
OK, I have solved it. It appears that I needed to set display:inline-block; on span elements in scrolling div. Not sure why but it works now. On Fri, Nov 20, 2009 at 8:29 AM, Manic wrote: > Hello, > > I'm using jquery script to animate stock ticker. Everyting works OK, > except in IE8. can anyon

[jQuery] Re: Fading list items in one at a time

2009-11-21 Thread Heath
Nevermind, I just did it with a recursive function: function fadeListItem($i) { $('.masonryWrap li:eq('+$i+')').fadeIn(1000, function(){ $i++; if( $i > $('.masonryWrap li').length ){ } else { fadeListItem($i);

[jQuery] Fading list items in one at a time

2009-11-21 Thread Heath
Basically what I am trying to do here is fade in all of the list items of a given unordered list one at a time. Here's what I have so far, but once I add the setTimeout (so that everything doesn't fade in instantly) it goes completely fubar. Any suggestions on how I should 'wait' until the item is

[jQuery] How to Multiple wrap in Attribute level??

2009-11-21 Thread navid zehi
hello all I have a problem with wraping a text or html with a tag, but the text should be placed in an attribute . for example : i have a table like this abc >def >ghe i want to change each of the TDs to Textbox with value of its TD . i used this : $

[jQuery] IE8 slow animation

2009-11-21 Thread Manic
Hello, I'm using jquery script to animate stock ticker. Everyting works OK, except in IE8. can anyone see what is the problem? Here is the site: http://www.manager.ba/naslovnica/ Thank you.

Re: [jQuery] Beginners problem with selectors

2009-11-21 Thread Michael Geary
So you are saying you want the entire last row of the outer table, not the last row of the inner table, is that right? IOW, what you want to get back is this row: testNew test If that's right, you're just missing a '>' in your selector. Change it from: var $row = $('table#list tbody>tr:last');

[jQuery] is this legal acording to the jQuery licence

2009-11-21 Thread Dimitar Velkov
Hello, I need to use jQuery lib in a script that will be included in my clients sites. My script will be included last in the body of a html page, and jQuery lib will be included dynamically from my script. Can anyone tell me is this going to have conflict with older jQuery libraries and with othe

Re: [jQuery] is this legal according to the jQuery license

2009-11-21 Thread Michael Geary
You're welcome to make any changes to jQuery that you want. You can use jQuery under the MIT license, which puts very few (almost no) restrictions on what you can do with it. Basically the only two restrictions are that you have to keep the copyright notice in the jQuery source code, and you can't

[jQuery] Multiple file upload - uploadify.com

2009-11-21 Thread Rams j
Hi All I have used the multiple file upload plugin http://www.uploadify.com It is not working in IE7. Could you please suggest some ways to fix this IE7. $('#testID').uploadify({ 'uploader': 'Js/jquery.uploadify-v2.1.0/uploadify.swf', 'folder': 'Js/jquery.uploadify-v2

[jQuery] Problem with lock of browser after $.ajax call

2009-11-21 Thread Michael Holm Kristensen
Hi, I have a problem with some of my jquery code.. i will make this short an straight ahead. What i want is: 1. page that will print a loader bar to begin with. 2. make a ajax call to some information from an external source. 3. print the information from external source when i get the response.

[jQuery] Best Practise Question

2009-11-21 Thread Dave Maharaj :: WidePixels.com
I have the following set up: When you click "edit" and the #manage_award toggles out and the #manage_award_edit toggles in giving and overlapping effect. On every browser it looks fine but in FF if I have the browser open for a while the memory FF uses gets up to 800k or more and the toggle looks

[jQuery] JQuery validation plugin - custom validation for group of html elements

2009-11-21 Thread Narasimha
I have a set of combo boxes on a HTML form which act as a Date control: 2009 2008 Jab Feb 1 31 No I want to validate whether the user has left any value (year/month/ day) as blank, or if the values form a valid date (example

[jQuery] Re: Round tripping XML data

2009-11-21 Thread NeilM
For anyone else out there with a similar requirement, I have discovered/developed a simple solution to this which at least works with IE, Firefox and Safari and may work with other browsers that I have not yet tested... function XmlToString(xData) { if (xData.xml) { return xData.xml;

[jQuery] jCarousel + Galleria doesn't work properly

2009-11-21 Thread zek
This is what I've got so far: http://zek.nma.sg/ (I'm implementing jQuery in Wordpress) This is what I'm trying to get: http://tinypic.com/r/mtqfmc/6 The following is an example of an implementation of Galleria and jCarousel, but I couldn't get their tutorial to work for me: http://themeforest.s3

[jQuery] is this legal according to the jQuery license

2009-11-21 Thread Dimitar
Hello, I need to use jQuery lib in a script that will be included in my clients sites. My script will be included last in the body of a html page, and jQuery lib will be included dynamically from my script. Can anyone tell me is this going to have conflict with older jQuery libraries and with othe

[jQuery] (validate)

2009-11-21 Thread Juan Borda
hi there i'm working with the remote method of validator plug-in to have in response validity and a message... and i have it working! the plugin show the remote msg ok but on lost focus i get: Warning: No message defined for DE1695 the remote script always return {valid:tue,msg:somemsg} test inp

[jQuery] JQuery validation plugin - custom validation for group of html elements

2009-11-21 Thread Ngm
I have a set of combo boxes on a HTML form which act as a Date control: 2009 2008 Jab Feb 1 31 No I want to validate whether the user has left any value (year/month/day) as blank, or if the values form a valid date

[jQuery] Beginners problem with selectors

2009-11-21 Thread jkrassman
Hi, sorry if I am posting in the wrong group? I am having a simple nested table, looks like this test New test So my problem is that I cant get the last TR within the first table? var Obj = $("table#list tbody>tr:last"); Of course it looks at the last in the table, but how should I mana

[jQuery] jQuery getScript under IE6

2009-11-21 Thread Nick
Hello. jQuery getScript does not work under IE6 I've try: $(document).ready(function(){ $.getScript("***LINK***"); }); ***LINK*** returns alert(1); But no alerts, no errors in IE6 But under FireFox it works. That is wrong??? Example http://docs.jquery.com/Ajax/jQuery.getScript#urlcall

[jQuery] Re: Click event outside of an element

2009-11-21 Thread mofle
Here you go: $(document).click(function(){ alert('clicked outside classname'); }); $('.classname').click(function(e){ e.stopPropagation(); }); First you bind a click event to the document with the action you want. Then you bind the classname to stop it from propagate up to the d

[jQuery] Re: Cant able to execute JQuery in ASP.NET

2009-11-21 Thread mofle
Add: return false; below the $("p").show("slow"); Like this: $("button").click(function() { $("p").show("slow"); return false; }); On Nov 20, 7:03 pm, Chinna wrote: > Hi guys, > > I have downloaded JQuery . > > <%@ Page Language="C#" AutoEventWireup="true" > CodeFile="Default.a

[jQuery] Re: adding event to dynamic element

2009-11-21 Thread mofle
You're doing it wrong, and you don't need to use live. I tested this, and it works: var $results = $('#ajaxSearchResults'); $('