[jQuery] Re: Media Plugin (malsup site) "REPLACE" code uses OLD metadata.js - ALSO: nothing works in IE6/IE7

2009-01-03 Thread yvonney
JUST checked the metadata.js version I got earlier today from: http://www.malsup.com/jquery/media/replace.html against version 1.0 of metadata and it's almost identical except for about 4 differences. There's a lot of differences between the version of metadata that works with the replace code

[jQuery] Re: custom function call from document.ready

2009-01-03 Thread adeveloper
I have replaced alternate with an alert statement. The alert statement works on document load. However, it is not being called after sorting (forgot to mention, the table is being sorted after the user clicks on one of the headers). Why is it so? $(document).ready(function() { $("#tableID").

[jQuery] Re: Media Plugin (malsup site) "REPLACE" code uses OLD metadata.js - ALSO: nothing works in IE6/IE7

2009-01-03 Thread yvonney
UPDATE: well not working. though I'm laughing as the way a person gets better is by haing problems. 1) indeed the script is the same as it has been, and it works for you with V2 metadata and in IEs. 2) I have compared the V2 version of metadata that I NOW see on your / replace.html page and YES

[jQuery] Re: Media Plugin (malsup site) "REPLACE" code uses OLD metadata.js - ALSO: nothing works in IE6/IE7

2009-01-03 Thread yvonney
Wow Mike! Thanks for the info. Thanks for being such a star too! hehehe, um...really! It's been an amazing week of all day and night learning and trying things... Anyways, I'll go and and have a good think and try metadata etc. best wishes to all! y

[jQuery] Re: specify a content class in accordion plugin

2009-01-03 Thread Richard D. Worth
The accordion creates each content section by the element immediately following each header, using .next(). Otherwise, if it went any deeper, or jumped over elements, what would happen to them? - Richard On Sun, Jan 4, 2009 at 12:34 AM, claudes wrote: > > > is it possible to specify a class for

[jQuery] Re: - Enable then Disable buttons

2009-01-03 Thread Karl Rudd
Woops. Mistyped the second to last bracket. Should be a '(', rather than '{'; $('#theSelectorForTheButton').click( function() { var button = this; button.disabled = true; setTimeout( function() { button.disabled = false; }, 3000 ); }); On Sun, Jan 4, 2009 at 5:15 PM, Karl Rudd wrote: > Untes

[jQuery] Re: - Enable then Disable buttons

2009-01-03 Thread Karl Rudd
Untested but this should do the trick. $('#theSelectorForTheButton').click( function() { var button = this; button.disabled = true; setTimeout( function() { button.disabled = false; }, 3000 }; }); Karl Rudd On Sun, Jan 4, 2009 at 2:22 PM, Commandos wrote: > > How can i disable a button f

[jQuery] use beforeStart callback to trigger validation of current carousel slide (jcarousel lite plugin)

2009-01-03 Thread claudes
i'm using jcarousel lite to create a multi-part form and i want to validate each section and not allow user carousel to scroll to next slide until that part of the form is valid. is is possible to do this using the beforeStart callback to run validation? or is it possible to call validation h

[jQuery] specify a content class in accordion plugin

2009-01-03 Thread claudes
is it possible to specify a class for the content container in the accordion plugin? it is possible to for header. thanks -- View this message in context: http://www.nabble.com/specify-a-content-class-in-accordion-plugin-tp21273212s27240p21273212.html Sent from the jQuery General Discussion m

[jQuery] Re: Media Plugin (malsup site) "REPLACE" code uses OLD metadata.js - ALSO: nothing works in IE6/IE7

2009-01-03 Thread Mike Alsup
> ONE: that the code below does NOT work with the latest version of > metadata.js > > TWO: my working page does absolutely noting in IE7 and IE7. I am > hoping this is due to the metadata older version, as I'd read about > problems with the older metadata.js. I fixed that demo page. It is now us

[jQuery] Re: What does "el" mean in jQuery code?

2009-01-03 Thread Mike Alsup
> Throughout the many plugins I have devoured while attempting to learn > all of the secrets/gloriness of jQuery, I constantly run into > something like or close to function(el){ //Code Here }. > I'm guessing el is short for element and it's a variable of some sort, > but knowing my luck with prog

[jQuery] What does "el" mean in jQuery code?

2009-01-03 Thread jNewb
My question to you seasoned jQuery veterans is this: Throughout the many plugins I have devoured while attempting to learn all of the secrets/gloriness of jQuery, I constantly run into something like or close to function(el){ //Code Here }. I'm guessing el is short for element and it's a variable

[jQuery] event.preventDefault() not in the intellisense?

2009-01-03 Thread yww
Hi I am new to this group and also new to Jquery. So I am just trying the sample in tutorials. Basically it works very nicely. But there is a small flaw while I was playing with JQuery, that I can't get the intellisnse help from visual studio. and I have captured the screen shot as following: htt

[jQuery] Re: How to check all required fields after each field is filled...

2009-01-03 Thread Rick Faircloth
Thanks for the reply, Joe... To answer your question: I want to check the required fields for any that are still invalid after a user blurs out of any required field. Rick > -Original Message- > From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On > Behalf Of Joe >

[jQuery] - Enable then Disable buttons

2009-01-03 Thread Commandos
How can i disable a button for 3 seconds then after that enable it when a use click a button (to avoid the user clicking without stopping) Button Enabled -> user click the button -> button is disabled for 3 seconds -> button is enabled .

[jQuery] Media Plugin (malsup site) "REPLACE" code uses OLD metadata.js - ALSO: nothing works in IE6/IE7

2009-01-03 Thread yvonney
I am using the REPLACE code successfully (though ONLY in FF and Opera - IEs not doing ANYTHING) I found I HAD to use the metadata.js code FROM the page link/demo below as the newer version of metadata.js is quite different and does not work with the CODE example below the link (see below) I have

[jQuery] Re: How to check all required fields after each field is filled...

2009-01-03 Thread Joe
> > However, I want to be able to scan all required fields > > after each field is filled in and see if any required > > fields remain to be satisfactorily completed. When do you want to "scan"? After the user blurs out of the last input? Or blurs out of any required input (because technicall

[jQuery] Re: Absolute Image location

2009-01-03 Thread MarkAtHarvest
Brian, Here is the html code on my http://localhost:8080/mytrial/admin.gsp, on my grails application. Just added this to find the absolute location for the images if I use images/down.gif image this goes to link, http://localhost:8080/mytrial/images/down.gif, and it does n

[jQuery] Re: Absolute Image location

2009-01-03 Thread brian
On Sat, Jan 3, 2009 at 8:57 PM, MarkAtHarvest wrote: > > > Brian, > > I am a newbie on CSS , let me try to change it and update you back on how it > goes, thanks it seems this should work. > BTW, changing to /images/down.gif, does not work at all, my images folder is > at the root itself. Under t

[jQuery] Re: hidden form field

2009-01-03 Thread brian
On Sat, Jan 3, 2009 at 8:45 PM, bob wrote: > > How do I insert a value to hidden form field "user_name"? > > > > > > > > jQuery('form#myForm input:hidden ???').val('fast_fish'); > > Thats what I need: > jQuery("#myForm input[name='user_name']").val('fast_fish'); You can leave out the '

[jQuery] Re: Absolute Image location

2009-01-03 Thread MarkAtHarvest
Brian, I am a newbie on CSS , let me try to change it and update you back on how it goes, thanks it seems this should work. BTW, changing to /images/down.gif, does not work at all, my images folder is at the root itself. Under the webapps folder of my java application. Even if I try to create a

[jQuery] hidden form field

2009-01-03 Thread bob
How do I insert a value to hidden form field "user_name"? jQuery('form#myForm input:hidden ???').val('fast_fish'); Thats what I need:

[jQuery] Re: jquery.cycle.lite.js

2009-01-03 Thread Mike Alsup
> I'm very new to HTML and newer to JavaScript.  Just getting started > with Expression Web 2. > > I downloaded jquery.cycle.lite.js thinking I can use it for simple > swapping of photos in a space on my opening (home) page. > > I've put following in my file. > >     > > But, c

[jQuery] Re: questions on event delegation

2009-01-03 Thread brian
On Sat, Jan 3, 2009 at 8:06 PM, brian wrote: > On Sat, Jan 3, 2009 at 4:36 PM, wrote: >> >> My question's are >> >> 1. If you have a Div class= content with children anchors. Then >> empty and load in new content in that div with children anchor those >> anchors will get the same event handli

[jQuery] Re: questions on event delegation

2009-01-03 Thread brian
On Sat, Jan 3, 2009 at 4:36 PM, wrote: > > My question's are > > 1. If you have a Div class= content with children anchors. Then > empty and load in new content in that div with children anchor those > anchors will get the same event handling that the previous anchors had > right? No (well, n

[jQuery] Re: Ten(14) Reasons why Couchdb is better than Mysql (Off topic - might be interesting)

2009-01-03 Thread Romain
CouchDB is different then MySQL, you can't compare ! "Apache CouchDB is a distributed, fault-tolerant and schema-free document-oriented database" Mysql is a relationnal database management system So i think there's no reason why one could be better than another. But, i got some 10 really g

[jQuery] questions on event delegation

2009-01-03 Thread holandmijohn
My question's are 1. If you have a Div class= content with children anchors. Then empty and load in new content in that div with children anchor those anchors will get the same event handling that the previous anchors had right? 2 if it were a .click event to the div insted of the actual objec

[jQuery] jquery.cycle.lite.js

2009-01-03 Thread DonKeating
I'm very new to HTML and newer to JavaScript. Just getting started with Expression Web 2. I downloaded jquery.cycle.lite.js thinking I can use it for simple swapping of photos in a space on my opening (home) page. I've put following in my file. But, can't figure out what to

[jQuery] treeview - location based persistance issue

2009-01-03 Thread train
HI!! Nice job with treeview!! works like a charm! There is a little issue however... The treeview works fine, and when I navigate the content which the tree points to it also does its job by highlighting where ever I navigate to even if I click in the content rather than in the tree. However th

[jQuery] Re: How to check all required fields after each field is filled...

2009-01-03 Thread Rick Faircloth
Anyone? > > I'm trying to validate a form. > > All the validation I've implemented up to this point > is working fine. > > However, I want to be able to scan all required fields > after each field is filled in and see if any required > fields remain to be satisfactorily completed. If there >

[jQuery] jQuery Pagination and MySQL $limit, $offset

2009-01-03 Thread ripcurlksm
I am trying to use the jQuery pagination plugin with my PHP/MySQL website -- It appears I have to either use Ajax or use PHP to write the jQuery pagintion header so I can control the $offset and $limit, in order to control the pagination -- What is the best way to combine javascript, PHP and My

[jQuery] Re: event binding issue

2009-01-03 Thread Alexandre Plennevaux
Hi Michael , sorry it's my fault i made a stupid mistake somewhere else ( i dare not tell you what it was, I think i'd better get some sleep :) ). The code as such worked, so i would assume the wrap() does not unbind the events. Thanks again! alexandre On Sat, Jan 3, 2009 at 11:50 PM, Michael

[jQuery] Re: event binding issue

2009-01-03 Thread Michael Geary
Without testing it, off the top of my head I think it may be the .wrap() that is doing you in. That has to remove the element from the DOM and re-insert it, and I think that loses the event binding. Also, I take it that $dsanchors refers to a UL, is that right? Then you're temporarily inserting t

[jQuery] Re: Ten(14) Reasons why Couchdb is better than Mysql (Off topic - might be interesting)

2009-01-03 Thread Richard D. Worth
Also worth a read: CouchDB Expectations http://www.davispj.com/posts/10 " The most important part of this entire post is the following statement: The only time when CouchDB should be considered as a replacement for an RDBMS is when an RDBMS was the wrong choice in the first place. Just as CouchD

[jQuery] Re: Ten(14) Reasons why Couchdb is better than Mysql (Off topic - might be interesting)

2009-01-03 Thread Richard D. Worth
See also http://couchdb.apache.org/docs/intro.html " What CouchDB is * A document database server, accessible via a RESTful JSON API. * Ad-hoc and schema-free with a flat address space. * Distributed, featuring robust, incremental replication with bi-directional conflict detection and manage

[jQuery] Re: Ten(14) Reasons why Couchdb is better than Mysql (Off topic - might be interesting)

2009-01-03 Thread donb
I think it's rather bold to say 'better' rather than just 'different.' It's unclear how a couchDB database would fare with perhaps 50 million items stored in it, or if couchDB would be at all suitable for answering queries such as 'how many salespeople reached their quotas during the last quarter

[jQuery] event binding issue

2009-01-03 Thread Alexandre Plennevaux
hello friends, i'm injecting a menu ( UL > LI > A markup) and binding each A anchor a click event, but the event fails to trigger. Can you explain me what i'm dooing wrong? here is the code sample: $('' + linkText + '').appendTo($dsanchors).attr({ 'href': '#' + index,

[jQuery] slideDown/slideUp with media

2009-01-03 Thread flycast
I have a page that I am trying to slideDown and slideUp with a Windows Media Player object playing. IT works fine in Firefox but not in IE6. In IE6 when it slides up you can see the containing div slide up but the player keeps playing. The idea here is to only load and play the video being asked

[jQuery] Re: Why would this code not allow a $ as part of the input?

2009-01-03 Thread Rick Faircloth
Thanks! > -Original Message- > From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On > Behalf Of brian > Sent: Saturday, January 03, 2009 3:55 PM > To: jquery-en@googlegroups.com > Subject: [jQuery] Re: Why would this code not allow a $ as part of the input? > > > On

[jQuery] Re: [ui accordion] alwaysOpen option for nested lists

2009-01-03 Thread Richard D. Worth
Please post to the jQuery UI mailing list: http://groups.google.com/group/jquery-ui Thanks. - Richard On Sat, Jan 3, 2009 at 3:49 PM, Nestor Urquiza wrote: > Hi, > > Does anybody knows how to get a collapsed accordion when it is first shown? > > > From http://ui.jquery.com/demos/accordion#coll

[jQuery] Ten(14) Reasons why Couchdb is better than Mysql (Off topic - might be interesting)

2009-01-03 Thread mobiledreamers
http://pylab.blogspot.com/2009/01/ten-reasons-why-couchdb-is-better-than.html Guys I wrote up a small list of reasons why i think couchdb is way bettter than mysql. Do let me know what you think -- Gpirate the top torrent search engine http://gpirate.com

[jQuery] Re: Why would this code not allow a $ as part of the input?

2009-01-03 Thread brian
On Sat, Jan 3, 2009 at 2:28 PM, Rick Faircloth wrote: > > Thanks for the tips, Brian! > > That gave me just the insight I needed. > > Here's what I finally ended up with: > > if ( isNaN (this.value.replace(/\$|,|\./g,''))) > > That disregards any $ or , or . (commonly used US dollar symbols) > to

[jQuery] [ui accordion] alwaysOpen option for nested lists

2009-01-03 Thread nestor.urquiza
Hi, Does anybody know how to get a collapsed nested accordion when it is first shown? >From http://ui.jquery.com/demos/accordion#collapsible one would assume "alwaysOpen: false" however that is not enough when there are nested accordions. See the example below (borrowed from a previous post in t

[jQuery] jQuery code not being run

2009-01-03 Thread oliver.pra...@googlemail.com
Hi, I'm working on a site with somebody, and we got most of it finished, but it needs a little self made jQuery coding ... The problem is that this isn't running at all! The code is in personalized.js and is being loaded (firebug) Code in bin: http://code-bin.homedns.org/205 We already tested

[jQuery] Init datepicker in dynamically inserted input

2009-01-03 Thread Mickiii
Hi, I have this function for a table form: $('#newDraftLine').click(function(){ var row = $('#draft tr:last'); var copy = row.clone(); copy.insertAfter(row); copy.find('.datepicker').a

[jQuery] [ui accordion] alwaysOpen option for nested lists

2009-01-03 Thread Nestor Urquiza
Hi, Does anybody knows how to get a collapsed accordion when it is first shown? >From http://ui.jquery.com/demos/accordion#collapsible one would assume "alwaysOpen: false" however that is not enough when there are nested accordions. See the example below (borrowed from a previous post in this for

[jQuery] How to check all required fields after each field is filled...

2009-01-03 Thread Rick Faircloth
I'm trying to validate a form. All the validation I've implemented up to this point is working fine. However, I want to be able to scan all required fields after each field is filled in and see if any required fields remain to be satisfactorily completed. If there are any, I want to keep the su

[jQuery] Re: Why would this code not allow a $ as part of the input?

2009-01-03 Thread Rick Faircloth
Thanks for the tips, Brian! That gave me just the insight I needed. Here's what I finally ended up with: if ( isNaN (this.value.replace(/\$|,|\./g,''))) That disregards any $ or , or . (commonly used US dollar symbols) to tell me if what is left is a number, which I can parse and store in my d

[jQuery] Re: select a specific row in a table

2009-01-03 Thread Ricardo Tomasi
Or simply $('.main:eq(1) > td:eq(1)').text(); In case you need it, you can select elements by their contents too, althought it's a bit slower: $('.main td:contains(Presse)') See the docs page for all available selectors: docs.jquery.com/Selectors docs.jquery.com/Traversing On Jan 3, 11:59 am

[jQuery] Re: question about each

2009-01-03 Thread Ricardo Tomasi
Everytime you change the "src" attribute of an image, the browser will fire a request to the server. That's one of the reasons why img roll- overs have been replaced with CSS hover a long time ago, this is a waste of scripting. Something like this is much more effective (and semantically correct):

[jQuery] Re: Why would this code not allow a $ as part of the input?

2009-01-03 Thread brian
On Sat, Jan 3, 2009 at 12:26 PM, Rick Faircloth wrote: > > Hi, all... > > I'm writing some validation code and have an input > for dollar amounts and would like for users to be able to > enter digits or $ or , or . all of which are commonly > used in US dollar values. > > The code I've written s

[jQuery] Re: How to create a div by click + drag

2009-01-03 Thread Richard D. Worth
For more flexibility you may want to bind the mousemove and mouseup functions to the document. - Richard On Tue, Dec 16, 2008 at 7:49 PM, Kean wrote: > > Hi Nejo31, > > I am too lazy to code, so I will mainly pseudo code. > > var initx; > var inity; > var resize = function(e){ >created.heig

[jQuery] Re: Question about UI Accordion - multiple triggers in nested lists

2009-01-03 Thread Richard D. Worth
On Wed, Dec 17, 2008 at 11:02 AM, taykahike wrote: > > is it configurable > to open the accordion to the correct level dynamically based on the > current page? Use the fillSpace option. You can see a demo here: http://ui.jquery.com/demos/accordion#fillspace http://code.google.com/p/jquery-ui/

[jQuery] Re: .NET with jQuery - noconflict?

2009-01-03 Thread Richard D. Worth
jQuery.noconflict is only needed when using jQuery alongside another library (like Prototype) that makes use of the '$' alias. There's no performance difference. It simply returns that '$' variable name back to whatever value it had before the inclusion of jquery.js. - Richard On Wed, Dec 17, 200

[jQuery] Re: Animated resize of a thumbnails inside a table

2009-01-03 Thread Mike Alsup
> > Here's an example that may help: > > http://www.malsup.com/jquery/cycle/thumbs.html I decided to make a little plugin for this: http://jquery.malsup.com/hoverpulse/

[jQuery] Re: IE8.

2009-01-03 Thread Richard D. Worth
Don't forget to do your part http://ejohn.org/blog/a-web-developers-responsibility/ - Richard On Thu, Dec 18, 2008 at 10:50 AM, sferragne wrote: > > Our friends at Microsoft have a lot of work to do until their new born > browser IE8 (Still in Beta 2) actually works the way it should. > > It s

[jQuery] Re: Simple way to track dragging?

2009-01-03 Thread Richard D. Worth
If you want to get below 24K and don't need all the options that the resizable plugin offers, you could build your own on top of the UI mouse plugin which is in ui.core.js (only 9k mined). See http://jquery-ui.googlecode.com/svn/tags/testing/ui/ui.resizable.js for an example on how to do that. Th

[jQuery] Disable Page Refresh

2009-01-03 Thread Himanshu Rathore
Hi, Is there a way to disable page refresh option - F5, Ctrl+F5, Menu > Refresh / Reload, Right Click Refresh? Regards, Himanshu Rathore

[jQuery] Why would this code not allow a $ as part of the input?

2009-01-03 Thread Rick Faircloth
Hi, all... I'm writing some validation code and have an input for dollar amounts and would like for users to be able to enter digits or $ or , or . all of which are commonly used in US dollar values. The code I've written should verify that after any $ or , or . are removed from a user's entry,

[jQuery] Re: Combo box problem

2009-01-03 Thread Vijendra
Thanks mike for your prompt reply but now i am able to display that list but i have to firstly select second or any other option leaving the first one, sorry i cant post that code now but post the link and code tomorrow. On Jan 3, 8:10 pm, Mike Alsup wrote: > > I am trying to display many lists

[jQuery] book: Learning JavaScript, Second Edition

2009-01-03 Thread David William
someone in the group have this book? Learning JavaScript, Second Edition link -> http://oreilly.com/catalog/9780596521875/preview.html

[jQuery] Re: Append inside loop

2009-01-03 Thread Mike Alsup
> Hi, > can anybody explain me, why this code don't work as I expected ? > Here is: > >         function get(page){ >         return $.ajax({ >                                 async: false, >                                 type: "GET", >                                 dataType: "json", >        

[jQuery] Re: Cannot get dynamically generated link to fire

2009-01-03 Thread Rick Faircloth
Great! :o) > -Original Message- > From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On > Behalf Of Randy Johnson > Sent: Saturday, January 03, 2009 12:37 AM > To: jQuery (English) > Subject: [jQuery] Re: Cannot get dynamically generated link to fire > > > Rick, > >

[jQuery] Re: custom function call from document.ready

2009-01-03 Thread Mike Alsup
> I have a table which needs to be sorted. Tablesorter plugin does not > fully work. I am trying to call a simple alternate function from > jQuery $(document).ready method. How to make it work? > > $(document).ready(function() { >     $("#tableID").tablesorter({ >         >     }); >     alter

[jQuery] Re: Combo box problem

2009-01-03 Thread Mike Alsup
> I am trying to display many lists based on selection in a combo box > but can't able to achieve it as when i select any option in combo it > displays same list on each option selection. Any help will we welcome > and thanks for that help. Can you please post a link? It's hard to help without a

[jQuery] Re: Animated resize of a thumbnails inside a table

2009-01-03 Thread Mike Alsup
> I'm (still) trying to create a hover effect over a thumbnail image, a > simple animated grow is what I'm looking for. > Has anyone done this and is interested to share some insight? > I'm tripping on the first step, changing the thumbnail position to > absolute (of 4 major browsers that I'm usi

[jQuery] Re: JQUERY .POST PROBLEM

2009-01-03 Thread wattsup
@Michael & Andy You gents where correct, it was adding a newline to return data. console.log( '[' + data + ']' ); showed the correct data being returned. After looking at my php script I did have a few blank lines before/after . Removed these and everything is working great now!! Can not be

[jQuery] question about each

2009-01-03 Thread David .Wu
Part1 var navPath = 'images/nav/'; var navArr = new Array ('nav_about','nav_product','nav_skill','nav_service','nav_news','nav_member','nav_recruit'); var navArrLen = navArr.length; for(i=0;i

[jQuery] Re: Sleep / Delay in jQuery

2009-01-03 Thread Mike Alsup
>   I'm a newbie to jQuery and was going through the hello world of > jQuery as per  -http://docs.jquery.com/How_jQuery_Works > >    I've gotten my code to the stage > > [...@bfc22 basics]$ cat tes

[jQuery] Re: Identify Google Chrome

2009-01-03 Thread Mike Alsup
> Hi, how can i identify google chrome in my javascript. I try go with > my google chrome on jquery page > (http://docs.jquery.com/Utilities/jQuery.browser > )and i see that my chrome is safari browser version 525.19. var isChrome = /Chrome/.test(navigator.userAgent);

[jQuery] Re: select a specific row in a table

2009-01-03 Thread Mauricio (Maujor) Samy Silva
Suppose we want target the second cell of the second row whose class is "main" : selectedCell = $('.main').eq(1).find('td').eq(1).text() alert(selectedCell); Hello, I would to know how I can get a specific row in a table and get the text of a specific td.

[jQuery] Animated resize of a thumbnails inside a table

2009-01-03 Thread vani
I'm (still) trying to create a hover effect over a thumbnail image, a simple animated grow is what I'm looking for. Has anyone done this and is interested to share some insight? I'm tripping on the first step, changing the thumbnail position to absolute (of 4 major browsers that I'm using to test

[jQuery] Re: Change image to black and white on hover

2009-01-03 Thread BenV
Hello there! I think you can find a way to perform this effect with a nice transition here : http://jqueryfordesigners.com/image-cross-fade-transition/ I hope it'll help! Happy new year everyone On 23 déc 2008, 17:20, "Paul Collins" wrote: > Hi all, > > I'm a little stuck and I can't seem to

[jQuery] Check both fields together with ajax

2009-01-03 Thread neo
Hi, I'm playing with validation and I encountered a problem. I have a text input and a select button. I want to check whether they aren't empty and check via ajax if it's valid (user's typing alias and domain) I was trying to disable validation for text input and just set it an event which fires

[jQuery] Identify Google Chrome

2009-01-03 Thread fireball_
Hi, how can i identify google chrome in my javascript. I try go with my google chrome on jquery page ( http://docs.jquery.com/Utilities/jQuery.browser )and i see that my chrome is safari browser version 525.19. Have you somebody any idea? Thank you and i'm sorry for my bad english :-)

[jQuery] Combo box problem

2009-01-03 Thread Vijendra
Hi Friends, I am trying to display many lists based on selection in a combo box but can't able to achieve it as when i select any option in combo it displays same list on each option selection. Any help will we welcome and thanks for that help.

[jQuery] Sleep / Delay in jQuery

2009-01-03 Thread Yashesh Bhatia
Hello, I'm a newbie to jQuery and was going through the hello world of jQuery as per - http://docs.jquery.com/How_jQuery_Works I've gotten my code to the stage [...@bfc22 basics]$ cat test3

[jQuery] select a specific row in a table

2009-01-03 Thread even971
Hello, I would to know how I can get a specific row in a table and get the text of a specific td. For example this table: Order Name

[jQuery] Re: Accordion problem - closing issue

2009-01-03 Thread Nestor Urquiza
Hi vld, I do not see how the provided markup can prove that accordion effect is possible for nested ul elements. If the below is used "hi" does not show up in any case for my environment at least (tested with Firefox 3.05 and Opera 9.62 on Ubuntu Intrepid, using ui.accordion.js from jquery.ui-

[jQuery] focus

2009-01-03 Thread mahi2m...@gmail.com
FOCUS IS COMPUTING http://www.freewebs.com/focusing/ @@@ http://groups.google.co.in/group/jquery-en?hl=en&lnk= @

[jQuery] human interest in face

2009-01-03 Thread pappy
More of the interest in money http://www.freewebs.com/williamsz/

[jQuery] human interest in face

2009-01-03 Thread pappy
More of the interest in money http://www.freewebs.com/williamsz/

[jQuery] human interest in face

2009-01-03 Thread loo
More of the interest in money http://www.freewebs.com/williamsz/

[jQuery] Append inside loop

2009-01-03 Thread vorp
Hi, can anybody explain me, why this code don't work as I expected ? Here is: function get(page){ return $.ajax({ async: false, type: "GET", dataType: "json",

[jQuery] Re: "$ is not defined" error

2009-01-03 Thread Betty
Oh, I know why there is such a script element. It's one of the wordpress plugins I use. -.- Strangely, it only conflicts with Firefox. I don't know how to thank you, Mike. It's so kind and patient of you. You are the best person I've met this year. :) On Jan 3, 6:38 pm, Betty wrote: > OMG! I did

[jQuery] Re: script and strange behaviours with ie

2009-01-03 Thread Saledan
Hi, yes i supposed that browsers older than ie6 are now unsupported by jQuery and web developers, i just play with those versions... the important issues are with ie 6 and 7. Yes, maybe the issue is with cache, but the strange thing is that the same image (the 9th image) into the grid (in both bro

[jQuery] Re: "$ is not defined" error

2009-01-03 Thread Betty
OMG! I didn't put that noscript thing there. I don't know why it's there. I'll check if my site is hacked... You are like my savior. Thank you so much! On Jan 3, 4:38 pm, "Michael Geary" wrote: > Aha! I figured it out. It wasn't the cloning vs. moving thing I was talking > about at all. Sorry -

[jQuery] Re: "$ is not defined" error

2009-01-03 Thread Michael Geary
Aha! I figured it out. It wasn't the cloning vs. moving thing I was talking about at all. Sorry - I was just mixed up about that. Here's the real problem. Take a look at the content of your "respond" DIV. At the end of it you have a

[jQuery] Re: "$ is not defined" error

2009-01-03 Thread Betty
Thank you, Mike. I don't whether I can change the #respond id. Because it contains the comment form, it may not work properly if the id is changed. Maybe I have made it too complicated. What I want is simply this (I'm sure you've seen it on other sites, or perhaps you've even done that yourself):

[jQuery] Re: "$ is not defined" error

2009-01-03 Thread Betty
I checked the jQuery official documents and it says that starting with 1.2.2 $("#foo").remove().appendTo("#bar"); should be written as $("#foo").appendTo("#bar"); (http://docs.jquery.com/Manipulation/remove#expr) I assume appendTo() and insertAfter() follow the same rules. It seems like they do m

[jQuery] Re: "$ is not defined" error

2009-01-03 Thread Michael Geary
Glad to help, Betty. But I think I may have been confused too. (Actually, I *know* I'm confused at this point.) Here's a post from Dave Methvin that explains some of the moving/cloning behavior: http://groups.google.com/group/jquery-en/msg/85833f44e69e8c6c I'm not sure from Dave's description