[jQuery] jCarousel infinite loop problem w/ multiple carousels on display: none

2008-01-30 Thread Todd
I am attempting to build a page with multiple carousels, that by default, only one displays. When you click on an element on the page (a staff members name), you see their own personal carousel, which replaces the default. When I attempt to do this, I receive the following error message: "jCaro

[jQuery] Re: [validate] Validation Plugin - how to remove a control form validation

2008-01-30 Thread Dave Stewart
Hi Jorn, Yup - here's a test page: http://www.janepatrick.co.uk/admin/test/login.php Submitting the form manually (as you said) just bypasses any validation, which is NOT what I want, as I still need the email address validated before it's sent to the back end to email the password... U

[jQuery] Re: change on select not working

2008-01-30 Thread Hamish Campbell
Whenever you create new selects you will need to bind the click event to the new selects. On Jan 31, 11:51 am, RyanMC <[EMAIL PROTECTED]> wrote: > $("select").change(function(){ >     alert("Selected: " + this.value); > > }); > > Is there any reason why this wouldn't be working on all the selects

[jQuery] Re: simplemodal and datepicker

2008-01-30 Thread Eric Martin
Thanks for the example Marc. To answer the OP's question, I added an example using SimpleModal: http://ericmmartin.com/code/datepicker/ -Eric On Jan 30, 12:43 pm, 1Marc <[EMAIL PROTECTED]> wrote: > I've had a lot of questions about modal windows and UI Datepicker, so > I created a demo example

[jQuery] Re: Is this the best way?

2008-01-30 Thread Danny
jQuery does not have a built-in selector to compare the values of attributes, but it allows you to write custom filters (analogous to plugins). I once found documentation on this but can't anymore. You sort of have to read the source to learn to do this. You just extend the $.expr[':'] object with

[jQuery] Re: Fighting a closure

2008-01-30 Thread Karl Swedberg
On Jan 30, 2008, at 9:13 PM, Karl Swedberg wrote: If you can assign class="port" to each of those elements, you could do this: $('.port').each(function(index) { $(this).click(function() {bigchart(index)}); } if you can't assign a class, then change $('.port') to $ ('[id^=port]') ,

[jQuery] Re: How to logically AND selectors?

2008-01-30 Thread Karl Rudd
Yes, of course. As you demonstrated, if you want to select by id as well then you put the id first. So conceivably you could write something like: p#anId.aClass.anotherClass.stillAnotherClass And it would only match elements like this: Karl Rudd On Jan 31, 2008 1:23 PM, Erik Beeson <

[jQuery] Re: How to logically AND selectors?

2008-01-30 Thread Erik Beeson
> > You're looking for:.selector1.selector2.selector3 > But, that's only if selector1, selector2, and selector3 are all classes, yes? --Erik

[jQuery] Re: How to logically AND selectors?

2008-01-30 Thread Erik Beeson
Generally, just run them together with no space. A div tag with ID foo and class bar: div#foo.bar Any tag with classes class1 and class2: .class1.class2 etc Hope it helps. --Erik On 1/30/08, Kynn Jones <[EMAIL PROTECTED]> wrote: > > > Hi. The docs describe selectors of the form > > select

[jQuery] Re: How to logically AND selectors?

2008-01-30 Thread Karl Rudd
You're looking for: .selector1.selector2.selector3 Notice there are no spaces between the selectors. Karl Rudd On Jan 31, 2008 1:12 PM, Kynn Jones <[EMAIL PROTECTED]> wrote: > > Hi. The docs describe selectors of the form > > selector1, selector2, selector3 > > as "matching the combined

[jQuery] Re: Fighting a closure

2008-01-30 Thread Ariel Flesler
The only thing you need to do is to capture the number on a scope. Like this: function bind( num ){ $('#port'+num).click(function(){ bigchart(num); }); }; for( var i=0; i<5; i++ ) bind( i ); And voila, you can also do: function getHandler( num ){ return function(){ bigchart(num); });

[jQuery] Re: Fighting a closure

2008-01-30 Thread Karl Swedberg
On Jan 30, 2008, at 3:10 PM, timothytoe wrote: I think I submitted a half-done version of this message by accident a few minutes ago. Sorry. This works: $("#port0").click(function() {bigchart(0)}); $("#port1").click(function() {bigchart(1)}); $("#port2").click(function() {bigchart(2)}); $

[jQuery] How to logically AND selectors?

2008-01-30 Thread Kynn Jones
Hi. The docs describe selectors of the form selector1, selector2, selector3 as "matching the combined results of all the specified selectors", by which they mean the set union of all the individual selections. In other words, the ',' here behaves like a logical OR. Is there a succinct way t

[jQuery] Re: Fighting a closure

2008-01-30 Thread Feijó
I'm yet to be an expert in jQuery :) But I would solve that like this: $(".port").click(function() {bigchart($(this).attr('port-id') )}); now in your html code, I guess its like: change to Feijó timothytoe escreveu: I think I submitted a half-done version of this message by ac

[jQuery] Re: Superfish 1.4.1 update released

2008-01-30 Thread Joel Birch
On 31/01/2008, Olivier Percebois-Garve <[EMAIL PROTECTED]> wrote: > > Hi Joel, > I'll try to give you some feedback. Hi Olivier, Thanks very much for the feedback, it really is very useful. > First some remarks and questions and then a bug report : > You may change some filenames. For instan

[jQuery] Re: Fighting a closure

2008-01-30 Thread Josh Nathanson
There is a clever way -- in John Resig's book he talks about it -- it involves executing the anonymous function right after declaring it, when in a for loop: function() { do whatever; }(); But, I tried some experiments and I couldn't get it to work right. -- Josh I ended up doing someth

[jQuery] Re: Fighting a closure

2008-01-30 Thread timothytoe
I ended up doing something similar to what you suggest, but I really was hoping to elicit some clever way to get the value of the variable at the time of the assignment, rather than the "5" that I get because the closure is maintaining the context. Is there a way to set these event handlers up in

[jQuery] Re: Email validation broken in plugin v1.2?!

2008-01-30 Thread Rus Miller
I agree, [EMAIL PROTECTED] isn't likely to be used anytime soon in a real- world situation. I've hacked the plugin on line 865 from: return this.optional(element) || /^((([a-z]|\d|[!#\$%&'\*\+\-\/=\? \^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z]|\d|[!#\ $%&'\*\+\-\/=\?\^_`{\|}~

[jQuery] Parsing external XML files - Events Format

2008-01-30 Thread Josoroma
Hi! Im working in a project that needs to parse like 10 external XML or RSS resources of events. Some of this XML resources uses this format: http://web.resource.org/rss/1.0/modules/event/ Other resources are not using this standard tags, they use tags in different languages like: anot

[jQuery] Re: Loading GIF Slideshow w/o Modal

2008-01-30 Thread Ange
Thanks. Can any of these be customized to be a non-modal, no thumbs gallery? I need the first image of the galleries to be visible on page load, and prev/next buttons to load images as needed. -Ange On Jan 30, 6:52 pm, "Benjamin Sterling" <[EMAIL PROTECTED]> wrote: > Ange, > Have a look at one of

[jQuery] Re: Selector Containing Variable

2008-01-30 Thread [EMAIL PROTECTED]
You have to escape the first set of double quotes -- leave the single quotes there. var tabTest = "billy"; $(".orderInfo[id='" + tabTest + "'"]; On Jan 30, 7:24 am, studiobl <[EMAIL PROTECTED]> wrote: > I'm having trouble with a jQuery selector that contains a variable. > I'm trying to target an

[jQuery] Re: Another IE Sliding bug, the weirdest (some elements disappear and others not on SlideDown)

2008-01-30 Thread Arkilus
Any suggestions? On 27 jan, 18:45, Arkilus <[EMAIL PROTECTED]> wrote: > While building my application with jQuery I found out this really > weird internet explorer bug: > Applying SlideDown to elements that are relative positioned or that > have relative positioned parents, some elements just dis

[jQuery] Re: Fighting a closure

2008-01-30 Thread Josh Nathanson
Instead of binding five times, you can do it dynamically: $("[id^=port]").click(function() { bigchart( this.id.charAt(this.id.length-1) ); }); Something close to that should do it. Although if you end up with 10 or more clickables you'll have to change your naming scheme a bit. -- Jo

[jQuery] Re: Is this the best way?

2008-01-30 Thread Feijó
Yeah, its all div and within a particular parent!! I'm alreading having that kind of care, adding specificity for all my selectors. It should improve performance, I bet :) Thanks Joel Joel Birch escreveu: On 31/01/2008, Feijó <[EMAIL PROTECTED]> wrote: Its possible to simple use like

[jQuery] jScrollPane: hide an arrow at end of content?

2008-01-30 Thread DingoNV
i was wondering if anyone has a quick and easy way to hide an arrow if you are at the beginning or end of the scrollable content. for instance i would want the top arrow to not be visible at first, because there is no content above it. and when i reach the end of the content, i would like the do

[jQuery] Re: Superfish 1.4.1 update released

2008-01-30 Thread Olivier Percebois-Garve
Hi Joel, I'll try to give you some feedback. First some remarks and questions and then a bug report : You may change some filenames. For instance helperPlugin.js to hoverIntent.js or vertical.css to superfish-vertical.css I think it would be nice to put an exemple menu at the top of the sup

[jQuery] Re: Loading GIF Slideshow w/o Modal

2008-01-30 Thread Benjamin Sterling
Ange, Have a look at one of these plugins: http://benjaminsterling.com/category/jquery-plugin/ On 1/30/08, Ange <[EMAIL PROTECTED]> wrote: > > > I'm looking for a jQuery slideshow plugin, and I can't seem to fond > one that does all I need. Cycle and jCarousel come close. But my > problem is I h

[jQuery] Re: random option for Cycle not working?

2008-01-30 Thread Mike Alsup
What version of the plugin? On Jan 30, 2008 1:26 PM, ZAP <[EMAIL PROTECTED]> wrote: > > For some reason, Cycle is not randomizing the order of my blurbs. > > > $(document).ready(function(){$('#blurbs').cycle({fx:'turnDown',random: > 1,timeout:1});}); > > > Anyone know why this might be? >

[jQuery] Re: Multiple Superfish on the same page problems

2008-01-30 Thread Joel Birch
Hi there, It looks like you just need to add a width to your .nav rule. try width:183px; to begin with as this worked for me via Firebug. Joel Birch.

[jQuery] Re: [validate] Require with more then one selector

2008-01-30 Thread Jörn Zaefferer
Sudrien schrieb: Pardon the mixing of comment formats. // must be non-blank - values are digits ... // "Port not found" in previous list - values are strings ... // "Port not found" in previous list - value is a string // "Port not found" AND "Country not found" - how do I require both?

[jQuery] Re: Multiple jCarousel 's on one page

2008-01-30 Thread Josh V
help. On Jan 25, 10:37 am, Josh V <[EMAIL PROTECTED]> wrote: > hi. > > On Dec 19 2007, 3:02 pm, Josh V <[EMAIL PROTECTED]> wrote: > > > help. > > > On Nov 30, 4:55 pm, Josh V <[EMAIL PROTECTED]> wrote: > > > > anybody? > > > > On Nov 29, 5:03 pm, Josh V <[EMAIL PROTECTED]> wrote: > > > > > hi. i

[jQuery] Problem with sortables plugin (interface.js)

2008-01-30 Thread noff
Please, help! I can't understand. I'm using plugin "interface.js" - sortables. I have 2 dropables fields and some sortables elements. It's works in FireFox and Opera, but in IE, once I grag one element, next time it's can not be dragged: http://test.mkechinov.ru/rc/rc.htm - dont worry about sy

[jQuery] hi, im looking for some jcarousel help. more than one on same page?

2008-01-30 Thread Josh V
http://groups.google.com/group/jquery-en/browse_thread/thread/7e44db31deae3703/8909400f98de18c8#8909400f98de18c8

[jQuery] idle.slashdot.org uses jQuery

2008-01-30 Thread PragueExpat
Not much activity on the site yet (its new), but its nice to see that they appreciate and use a great javascript library

[jQuery] Re: Selector Containing Variable

2008-01-30 Thread FrenchiINLA
you can try $('#' + tabtext) since the id is unic you don't need the class. On Jan 30, 7:24 am, studiobl <[EMAIL PROTECTED]> wrote: > I'm having trouble with a jQuery selector that contains a variable. > I'm trying to target an element that has a class of "orderInfo" and an > id of "billy" > > So

[jQuery] Multiple Superfish on the same page problems

2008-01-30 Thread alivemedia
I am trying to have 3 different vertical lists that have flyouts for navigation. Here is the site (I know it is a mess right now): http://visitpalmbeach-com.alivedns.com/default.aspx Problem is the second and third menus get displayed horizontally. The flyouts works but the display is borked.

[jQuery] change on select not working

2008-01-30 Thread RyanMC
$("select").change(function(){ alert("Selected: " + this.value); }); Is there any reason why this wouldn't be working on all the selects on my page. I create the selects dynamically, but this is up in the $ (document).ready(function() { block of my code.

[jQuery] Re: Selector Containing Variable

2008-01-30 Thread Bohdan Ganicky
Hi, as Karl said...and you could also make things a little bit shorter by using multiple selector: var tabText = 'billy'; $('.orderInfo#'+tabText]; -- Bohdan -- View this message in context: http://www.nabble.com/Selector-Containing-Variable-tp15188162s27240p15194100.html Sent from the jQuer

[jQuery] Re: Validation plugin - spinner while validating field?

2008-01-30 Thread Rus Miller
My issue is that remote requests, especially those involving an external server, can take a second or two. It's nice to give the user an indication that something is happening, which is why a spinner isn't 'useless'. It would be great if someone could give me a push in the right direction. Als

[jQuery] Re: [validate] Email validation broken in plugin v1.2?!

2008-01-30 Thread Seth - TA
Is there a way to change that? Or, what part of the email regex could I modify? I would think that most people would agree with me that @localhost wouldn't really be a valid email for production use. If I am wrong, then tell me, however, could you point me in the right direction to not allow a val

[jQuery] Re: [SITE SUBMISSION] Sapitot Creative

2008-01-30 Thread motob
I had some trouble getting that history plugin to corporate with ui.tabs. I'll take another stab at it, maybe there are some updated documentation in that area. I had not run into that "Loading..." issue when I was running thru it, but I always waited until the transition finish. Ah the beauty of

[jQuery] Re: [SITE SUBMISSION] Sapitot Creative

2008-01-30 Thread Rus Miller
Also, you could dim the first view and thumbnail on the print and web pages to show that they're currently displayed. A beautiful site, though! I was actually planning on doing the same drop-down effect on my site redesign (which should be done sometime in '09). Stole my thunder! On Jan 30, 3:

[jQuery] Re: Not Submit [validate]

2008-01-30 Thread Marcos Aurélio
Thanks for the answer! I think you should put your validate / delegate / ajaxQueue in the same file. In my case, and the majority, only use these two plugins to run validate, and for this reason we have to include 3 files. Make a package, all built. Bye! On 30 jan, 15:48, Jörn Zaefferer <[EMA

[jQuery] Loading GIF Slideshow w/o Modal

2008-01-30 Thread Ange
I'm looking for a jQuery slideshow plugin, and I can't seem to fond one that does all I need. Cycle and jCarousel come close. But my problem is I have multiple galleries on one page, and they all have large images. So, since they load all the images in every gallery and then hide them, the page to

[jQuery] Re: JQuery UI and ExtJS

2008-01-30 Thread Cloudream
Ext has its own accordion panel On Jan 31, 12:01 am, "Stéphane Walther" <[EMAIL PROTECTED]> wrote: > Hi there, > > I tried to nest an ExtJS TreePanel into an Accordion menu (provided by > jQueryUI) like this : > -Header1 > -Header2 >     MyTree > -Header3 > > When I click on Header2, the TreePane

[jQuery] Fighting a closure

2008-01-30 Thread timothytoe
I think I submitted a half-done version of this message by accident a few minutes ago. Sorry. This works: $("#port0").click(function() {bigchart(0)}); $("#port1").click(function() {bigchart(1)}); $("#port2").click(function() {bigchart(2)}); $("#port3").click(function() {bigchart(3)}); $

[jQuery] onClick prepend

2008-01-30 Thread Mark T
I am trying to make the on-click event of any element optional depending on what the user decides. The only functions I see out there append a function to the on-click event. I have played with the browser bubbling / catching stuff too. That worked in Firefox but not in IE 7. It seems I can't acces

[jQuery] JQuery - Interface question

2008-01-30 Thread JPC
Hi all, I just built out a search page using the Jquery Interface plug-in. Specifically the slider function. You can view it on this page: http://www.totalbeauty.com/reviews/product_finder Unfortunately, the prices do not update as you slide the sliders. They update when you stop and unclick. I

[jQuery] Fighting a closure

2008-01-30 Thread timothytoe
This code works... $("#port0").click(function() {bigchart(0)}); $("#port1").click(function() {bigchart(1)}); $("#port2").click(function() {bigchart(2)}); $("#port3").click(function() {bigchart(3)}); $("#port4").click(function() {bigchart(4)}); Naturally, I want to do this: var por

[jQuery] random option for Cycle not working?

2008-01-30 Thread ZAP
For some reason, Cycle is not randomizing the order of my blurbs. $(document).ready(function(){$('#blurbs').cycle({fx:'turnDown',random: 1,timeout:1});}); Anyone know why this might be?

[jQuery] Re: Shadowbox Media Viewer

2008-01-30 Thread blaf
Does it work with an imagemap? Blaise

[jQuery] Re: UI.TABS - how to load content when tab is selected

2008-01-30 Thread MorningZ
Look at the "Ajax Tabs" section of the Tabs demo page (http:// stilbuero.de/jquery/tabs_3/) On Jan 30, 9:14 am, carvingcode <[EMAIL PROTECTED]> wrote: > I have a tab that I don't want the content (generated from a > separate .php file) to load untilt he user selects the tab. > > How can I do

[jQuery] [validate] Require with more then one selector

2008-01-30 Thread Sudrien
Pardon the mixing of comment formats. // must be non-blank - values are digits ... // "Port not found" in previous list - values are strings ... // "Port not found" in previous list - value is a string // "Port not found" AND "Country not found" - how do I require both? Can I do this as

[jQuery] Re: inserting adsense

2008-01-30 Thread Cloudream
var ads = $(this).html(); On Jan 30, 9:06 pm, felipe <[EMAIL PROTECTED]> wrote: > Hello, > > I am trying to insert adsense code as follows: > > var ads = $(this).text(); /// the adsense code goes here > > $(tr).append( '' + ads + '' ) ; > $(tr).addClass('ads'); > $('table#' + tablename + ' tr.hea

[jQuery] Re: Is this the best way?

2008-01-30 Thread Joel Birch
On 31/01/2008, Feijó <[EMAIL PROTECTED]> wrote: > Its possible to simple use like this? > $('.qualif[level>3]').remove(); I don't think there is a way to do that unfortunately. Pete had a good point about optimising your selector for speed though. For example, if you know all the .qualif ele

[jQuery] Re: Inline "hover menu" needed

2008-01-30 Thread sozzi
You may want to have a look at: cluetip: http://plugins.learningjquery.com/cluetip/demo/ On Jan 30, 12:15 pm, Sean O <[EMAIL PROTECTED]> wrote: > Hi, > > I'm looking for (likely) a plugin that will allow text/images to overlay a > small menu when hovered on, disappearing onMouseOut after a second

[jQuery] Re: there is a conflict ui.resizable.js and ajaxpro

2008-01-30 Thread Klaus Hartl
On Jan 30, 9:10 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > resizable will not be able  when using ajaxpro,the javascript error: > "c[0] has no properties" > > code: > for(var i in this.options.modifyThese) { > var c = this.options.modifyThese[i]; > c[0].css({ > width: modifier.width ? mo

[jQuery] Re: UI.TABS - how to load content when tab is selected

2008-01-30 Thread Klaus Hartl
On Jan 30, 3:14 pm, carvingcode <[EMAIL PROTECTED]> wrote: > I have a tab that I don't want the content (generated from a > separate .php file) to load untilt he user selects the tab. > > How can I do this? > > TIA If the tab is not active it won't load anyway. Another option is to set all tabs u

[jQuery] Re: simplemodal and datepicker

2008-01-30 Thread 1Marc
I've had a lot of questions about modal windows and UI Datepicker, so I created a demo example using thickbox: http://marcgrabanski.com/code/ui-datepicker/extras/thickbox-datepicker I hope that helps. On Jan 30, 10:55 am, Eric Martin <[EMAIL PROTECTED]> wrote: > On Jan 30, 6:13 am, rayfidelity

[jQuery] Inline "hover menu" needed

2008-01-30 Thread Sean O
Hi, I'm looking for (likely) a plugin that will allow text/images to overlay a small menu when hovered on, disappearing onMouseOut after a second or two. Example: http://www.medhelp.org/posts/show/418157 Something similar to the ContextMenu plugin would be great, if you could set the trigger

[jQuery] Re: Too many autocompleter plugins

2008-01-30 Thread eferraiuolo
This was a major reason for moving to YUI on a current project I'm working on. Eric On Jan 27, 10:12 am, Christoph Haas <[EMAIL PROTECTED]> wrote: > Fellow earthicans... > > A year ago I needed an autocompleter and tried Dylan Verheul's plugin > (http://www.dyve.net/jquery/?autocomplete). I fou

[jQuery] Re: [SITE SUBMISSION] Sapitot Creative

2008-01-30 Thread Benjamin Sterling
Looks really nice, but I would second Dan's comments and would probably suggest you implement the history plugin. Being in the DC area, 508 compliance is a big sell. On 1/30/08, Dan G. Switzer, II <[EMAIL PROTECTED]> wrote: > > > >Sapitot Creative is a Design firm that recently redesigned their >

[jQuery] Re: [SITE SUBMISSION] Sapitot Creative

2008-01-30 Thread Dan G. Switzer, II
>Sapitot Creative is a Design firm that recently redesigned their >website. jQuery is being used to enhance page transitions and to give >a little flair to the print and web portfolio sections. What is real >interesting is the unconventional use of jQuery-ui.tabs plugin for the >main navigation. >

[jQuery] Re: Not Submit [validate]

2008-01-30 Thread Jörn Zaefferer
Marcos Aurélio schrieb: Ok, see: Join http://www.animeschool.com.br/example/. First test: Put in login "AAA" and name "bbb" click the button and submit it. Second test: First click the button. He acknowledge the mistakes, all ok. Now fill in the fields with "AAA" and "bbb" and click the butto

[jQuery] Re: [SITE SUBMISSION] Sapitot Creative

2008-01-30 Thread Jonathan Sharp
Love it! On 1/30/08, motob <[EMAIL PROTECTED]> wrote: > > > Sapitot Creative is a Design firm that recently redesigned their > website. jQuery is being used to enhance page transitions and to give > a little flair to the print and web portfolio sections. What is real > interesting is the unconvent

[jQuery] Re: Shadowbox Media Viewer

2008-01-30 Thread Michael J. I. Jackson
;) I thought you'd like that. Michael On Jan 29, 2008, at 12:17 PM, Aaron Heimlich wrote: And you got my extensible file extension --> plugin mappings request in there too! Woot! On Jan 29, 2008 4:29 AM, Michael J. I. Jackson <[EMAIL PROTECTED]> wrote: Hi all, Just wanted to let you a

[jQuery] Re: Is this the best way?

2008-01-30 Thread Feijó
Hi Cabbite Thanks for your 0.02 Its possible to simple use like this? $('.qualif[level>3]').remove(); if level bigger then 3, remove it :) My code is dynamic, I cant just wrote all numbers I dont need to remove, like your example. Has to use a condition. Feijó cabbiepete escreveu:

[jQuery] Re: Selector Containing Variable

2008-01-30 Thread Karl Swedberg
On Jan 30, 2008, at 10:24 AM, studiobl wrote: I'm having trouble with a jQuery selector that contains a variable. I'm trying to target an element that has a class of "orderInfo" and an id of "billy" So, I set a variable: var tabText = "billy"; ...and it works if I use the string: $(".ord

[jQuery] Re: Validation plugin - spinner while validating field?

2008-01-30 Thread Jörn Zaefferer
Rus Miller schrieb: There is a label.error and a label.checked but does anyone know how I would display a label.pending (perhaps with a spinner) while the validation (especially a remote request) is happening? Thanks. You can still use jQuery's ajax events to display a busy-indicator: http:

[jQuery] Re: [validate] Validation Plugin - how to remove a control form validation

2008-01-30 Thread Jörn Zaefferer
Dave Stewart schrieb: Hi there I'm building a login form, with a "Forgot password" link. When clicked, I need to unset some validation options to successfully submit the form. The code I'm running does this: 1 - remove the validation constraints from the password field 2 - hide

[jQuery] Re: •.¸¸.•´´¯`••._.•> <((((º> How To Create Wealth????

2008-01-30 Thread Jonathan Sharp
User is banned. -js On 1/30/08, ++ Corn Square ++ <[EMAIL PROTECTED]> wrote: > > > Most Forex traders loose money, don't be one of them > Forex made easy is as simple as you would want it to be. ... > Forex can be made easier for beginners to understand it and here's how:- > > http://tiniuri

[jQuery] Re: Tab Effect

2008-01-30 Thread Kyle Browning
Hey no problem, and yea. I think they are moderated On Jan 30, 2008 7:23 AM, studiobl <[EMAIL PROTECTED]> wrote: > > Thanks, ocyrus! > > That helped! ...it does take dismayingly long for posts to show up > here. > > On Jan 29, 1:49 pm, ocyrus <[EMAIL PROTECTED]> wrote: > > I recently solved this

[jQuery] Datepicker showon link click

2008-01-30 Thread rsmolkin
Hi, Does anyone know how to make the Datepicker (calendar) be displayed by clicking on a link next to a textfield. I know it has a button option and a focus option, but our old calendar used to be launched by a link, so users are used to that. Does anyone know how to do that? Thanks, -Roman

[jQuery] Re: Manipulation of objects

2008-01-30 Thread RyanMC
Apparently the addOption() plugin doesn't like using $(this). I thought I had tried that loop before, that was the reason. I am sure there is a way to add and remove options without that plugin. Any pointers on where to start there? On Jan 29, 6:20 pm, "Josh Nathanson" <[EMAIL PROTECTED]> wrote:

[jQuery] jQuery.Validation - Is there a way to display a spinner while validating field?

2008-01-30 Thread Rus Miller
On Jan 30, 5:40 am, Rus Miller <[EMAIL PROTECTED]> wrote: > There is a label.error and a label.checked but does anyone know how I > would display a label.pending (perhaps with a spinner) while the > validation (especially a remote request) is happening? > > Thanks.

[jQuery] Re: simplemodal and datepicker

2008-01-30 Thread Eric Martin
On Jan 30, 6:13 am, rayfidelity <[EMAIL PROTECTED]> wrote: > Hi, > > I want to enable datepicker in the modal window that > opens...datepicker works fine for itself but i cannot get it to work > in modal. Any ideas? Can you clarify what you mean by "cannot get it to work in modal"? > > Modal win

[jQuery] [SITE SUBMISSION] Sapitot Creative

2008-01-30 Thread motob
Sapitot Creative is a Design firm that recently redesigned their website. jQuery is being used to enhance page transitions and to give a little flair to the print and web portfolio sections. What is real interesting is the unconventional use of jQuery-ui.tabs plugin for the main navigation. Check

[jQuery] Re: Manipulation of objects

2008-01-30 Thread RyanMC
I will give that a try thanks. On Jan 29, 6:20 pm, "Josh Nathanson" <[EMAIL PROTECTED]> wrote: > Basically you can do this: > > $('select').each(function() { > $(this).doWhatever() // will run the method doWhatever on the currently > iterating select > > }); > > -- Josh > > - Original Mes

[jQuery] JQuery UI and ExtJS

2008-01-30 Thread Stéphane Walther
Hi there, I tried to nest an ExtJS TreePanel into an Accordion menu (provided by jQueryUI) like this : -Header1 -Header2 MyTree -Header3 When I click on Header2, the TreePanel works fine (on FF only, IE doesn't seems to work). If I click on another header and come back to Header2, the the acc

[jQuery] Re: changing content for span tag on the fly

2008-01-30 Thread Dave Stewart
$("#scrollStats").html('bold'); $("#scrollStats").text('text');

[jQuery] Selector Containing Variable

2008-01-30 Thread studiobl
I'm having trouble with a jQuery selector that contains a variable. I'm trying to target an element that has a class of "orderInfo" and an id of "billy" So, I set a variable: var tabText = "billy"; ...and it works if I use the string: $(".orderInfo[id='billy'"]; ...but not the variable: $(".

[jQuery] Re: Manipulation of objects

2008-01-30 Thread RyanMC
Nevermind. I got it to work. Thanks for the tips. They helped. On Jan 29, 6:20 pm, "Josh Nathanson" <[EMAIL PROTECTED]> wrote: > Basically you can do this: > > $('select').each(function() { > $(this).doWhatever() // will run the method doWhatever on the currently > iterating select > > }); >

[jQuery] jQuery in the wild: www.engenderhealth.org

2008-01-30 Thread Dekortage
EngenderHealth, a nonprofit organization, just redesigned its web site. They use jQuery in several places: menus, SIFR page titles, subpage "related info" links (in places), and even on its donation page. http://www.engenderhealth.org (Note: some Flash on the site, though I don't think it is r

[jQuery] •.¸¸.•´´¯`••._.•><((( (º> How To Create Wealth????

2008-01-30 Thread ++ Corn Square ++
Most Forex traders loose money, don't be one of them Forex made easy is as simple as you would want it to be. ... Forex can be made easier for beginners to understand it and here's how:- http://tiniuri.com/c/u7

[jQuery] Re: Is this the best way?

2008-01-30 Thread cabbiepete
Hi Felix, I would have thought doing an attribute selector like you suggest was better. something like ... $('.qualif[level]).each ... to at least get rid of anything that doesn't have the level attribute. Also if you use the same tag name for all of these attributes its worth adding that

[jQuery] UI.TABS - how to load content when tab is selected

2008-01-30 Thread carvingcode
I have a tab that I don't want the content (generated from a separate .php file) to load untilt he user selects the tab. How can I do this? TIA

[jQuery] Re: [ANN] Lily, javascript visual programming tool

2008-01-30 Thread Bill Orcutt
Thanks Morgan- I'll make that change On Jan 29, 10:58 pm, "Morgan Allen" <[EMAIL PROTECTED]> wrote: > The minVersion in the install.rdf is 2.0.0 I changed to 2.0.0.* and it > installed > > On Jan 29, 2008 9:33 PM, Bill Orcutt <[EMAIL PROTECTED]> wrote: > > > > > > > Thanks for the useful feedback

[jQuery] $.get and $.getJSON

2008-01-30 Thread mwk
Hi, i encounter problems with the getJSON method when i do that: $.getJSON("http://localhost/jas/www/rmt.php5?action=airport_state";, {country: $(this).val()}, function(json) { $.log(json); }); nothing happends. there is even no connection trace in firebug but $.get("http://localhost/

[jQuery] [validate] Validation Plugin - how to remove a control form validation

2008-01-30 Thread Dave Stewart
Hi there I'm building a login form, with a "Forgot password" link. When clicked, I need to unset some validation options to successfully submit the form. The code I'm running does this: 1 - remove the validation constraints from the password field 2 - hide any error messages that

[jQuery] Re: Tab Effect

2008-01-30 Thread studiobl
Thanks, ocyrus! That helped! ...it does take dismayingly long for posts to show up here. On Jan 29, 1:49 pm, ocyrus <[EMAIL PROTECTED]> wrote: > I recently solved this solution this way, > > $(document).ready(function(){ > $('#profile-nav').children().each(function(){ > $(this).click(func

[jQuery] Re: How to insert google adsense with after()

2008-01-30 Thread felipe
hi, did you find how to do it? thank you On 30 dez 2007, 20:10, Jirka <[EMAIL PROTECTED]> wrote: > I try to add googleadsenseafter first paragraph of an article. Here > is my code: > > $('.article p:eq(0)').after(' > ...GOGLEADSENSECODE... '); > > But it looks that tag script shouldnt be add i

[jQuery] inserting adsense

2008-01-30 Thread felipe
Hello, I am trying to insert adsense code as follows: var ads = $(this).text(); /// the adsense code goes here $(tr).append( '' + ads + '' ) ; $(tr).addClass('ads'); $('table#' + tablename + ' tr.header').after(tr); Nothing happens. If I put some other html code into scalar ads, it works. An

[jQuery] Re: changing content for span tag on the fly

2008-01-30 Thread Karl Swedberg
Or, if you know that you'll be using just text (no html tags), you could do this: $("#scrollStats").text("someting"); --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Jan 30, 2008, at 11:11 AM, Bhaarat Sharma wrote: *dope* $("#scrollStats").html("

[jQuery] Re: [Announce] New Menu plugin

2008-01-30 Thread Roman Weich
Jörn Zaefferer schrieb: You could improve the demo by adding cursor:default for the menu. The text-selection cursor is rather irritating inside the menu. Yep, that demo page still needs a lot of work. It would be nice to be able to open the menu on hover, maybe powered by the hoverintent me

[jQuery] Re: Not a plugin but code for anyone trying to have collapse-able menu with cookies

2008-01-30 Thread Karl Swedberg
On Jan 30, 2008, at 10:57 AM, Bhaarat Sharma wrote: Hi ty, If I understand your question correctly..I think you mean that if this menu was used throughout the site and your pages would be doing an include on this js file, will the menu stay the same from page to page with user selections. The a

[jQuery] Re: changing content for span tag on the fly

2008-01-30 Thread Bhaarat Sharma
oh haha thanks. we replied at the same time :) On Jan 30, 11:11 am, Bhaarat Sharma <[EMAIL PROTECTED]> wrote: > *dope* > > $("#scrollStats").html("someting"); > > that works. > > ...should visit the api's more often... > > On Jan 30, 10:55 am, Bhaarat Sharma <[EMAIL PROTECTED]> wrote: > > > Hi >

[jQuery] Re: changing content for span tag on the fly

2008-01-30 Thread Bhaarat Sharma
*dope* $("#scrollStats").html("someting"); that works. ...should visit the api's more often... On Jan 30, 10:55 am, Bhaarat Sharma <[EMAIL PROTECTED]> wrote: > Hi > > Can someone please tell me how i can change the text between span tags > on the fly using jQuery > > I have tag like this > >

[jQuery] Re: changing content for span tag on the fly

2008-01-30 Thread Liam Byrne
Try $("#scrollStats").html("im here!!"); Bhaarat Sharma wrote: Hi Can someone please tell me how i can change the text between span tags on the fly using jQuery I have tag like this i have tried these but none seem to work $("#scrollStats").val("im here!!"); $("#scrollStats").setText("w

[jQuery] Re: Not a plugin but code for anyone trying to have collapse-able menu with cookies

2008-01-30 Thread Bhaarat Sharma
Hi ty, If I understand your question correctly..I think you mean that if this menu was used throughout the site and your pages would be doing an include on this js file, will the menu stay the same from page to page with user selections. The answer is yes (i think), because it is using cookies.

[jQuery] changing content for span tag on the fly

2008-01-30 Thread Bhaarat Sharma
Hi Can someone please tell me how i can change the text between span tags on the fly using jQuery I have tag like this i have tried these but none seem to work $("#scrollStats").val("im here!!"); $("#scrollStats").setText("works?"); Thanks!

  1   2   >