[jQuery] Re: File inputs

2008-01-30 Thread Mika Tuupola
On Jan 30, 2008, at 6:11 AM, Steffan A. Cline wrote: Well, I tried many variations of .click() with FF and according to this link: http://www.quirksmode.org/dom/inputfile.html Yes, it is not possible to programmatically trigger click event on file input. But still, I would suggest you

[jQuery] Re: File inputs

2008-01-30 Thread Hamish Campbell
Ah, I see. Maybe have a look at the uploader plugin? Otherwise, I think you're stuck :/ On Jan 30, 5:11 pm, Steffan A. Cline [EMAIL PROTECTED] wrote: on 1/29/08 7:58 PM, Hamish Campbell at [EMAIL PROTECTED] wrote: Some code would be useful - you've said that .click() doesn't work in

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

2008-01-30 Thread [EMAIL PROTECTED]
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 ? modifier.width+c[1] : nw+c[1], height: modifier.height ? modifier.height+c[2] :

[jQuery] Validation plugin - spinner while validating field?

2008-01-30 Thread Rus Miller
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] jquery's drawing library problem

2008-01-30 Thread Thunder`
Hey! I'm having a problem using drawLine of the drawinglibrary plugin. here is my code: http://pastebin.com/m54c8d5c8 What I'm trying to do is when a user clicks on an image, it draws a line connecting these points. See that at first I'm saving the first coordinates because there are no previous

[jQuery] Re: New and better demos

2008-01-30 Thread caruso_g
Wow, you rocks, I would ever not even imagined that solution... :P I will try to implement it. But, what do you mean with //check the settings? Thanks again. On Jan 30, 1:20 am, Ariel Flesler [EMAIL PROTECTED] wrote: Ugh.. (function( $ ){ var last = 0, $pane = $('#container'),

[jQuery] Reusing XMLHttpRequest

2008-01-30 Thread skin
Reusing XMLHttpRequest is possible in jQuery? in IE $.ajax on my computer is taking 1sec - 3 sec. only call of this function. In jquery code there is: var xml = window.ActiveXObject ? new ActiveXObject(Microsoft.XMLHTTP) : new XMLHttpRequest(); i suppose this is the problem. Please give me some

[jQuery] Re: jquery VS internet explorer

2008-01-30 Thread ZiTAL
Validating with XHTML 1.0 strict it works correctly, thanks for all!!!

[jQuery] Re: Is it possible to do this with Jquery?

2008-01-30 Thread caruso_g
Even better from Giovanni Carlo Mingati: http://www.gcmingati.net/wordpress/wp-content/lab/jquery/newsticker/jq-liscroll/scrollanimate.html Simpler, and just do what you need. You must simply put the images inside a link inside lists. On Jan 28, 3:14 pm, Matt Quackenbush [EMAIL PROTECTED] wrote:

[jQuery] Rolodex plugin anyone?

2008-01-30 Thread Alexandre Plennevaux
Check this out: http://devcenter.yesmail.com/com.yesmail.magellan.gwt.rolodexdemo.RolodexDemoApp/RolodexDemoApp.html Does someone feels like porting this to jquery? I would love to, but that's far beyond my reach for the moment. Besides, i'm actively working on jquploader2 in my scarce free

[jQuery] Upgrading from jQuery 1.2.1 to 1.2.2 - What happened to nodeType attribute selector, e.g. not('[nodeType=1]') in IE?

2008-01-30 Thread Klaus Hartl
All, in jQuery 1.2.1 I was using the following snippet, which I actually more or less took from the documents example page: $('p').contents().not('[nodeType=1]').replaceWith(' '); I used this to empty out some text nodes I couldn't control otherwise but leave other HTML elements alone. That

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

2008-01-30 Thread Morgan Allen
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 on the site. I've added another download link and will implement some of the other suggestions as I find time. I hope

[jQuery] Re: link stops working in fragment returned from ajax depending on select

2008-01-30 Thread K Bouton
Hey thanks. I tried this but not sure where to put it. This doesn't work. [code] $document.ready(function() { $(#wrapBA).hide(); $(select#ba).livequery('change',(function() { var ba = $(select#ba).val(); $.ajax({ type: POST, url:

[jQuery] Issue with IE and dom injection

2008-01-30 Thread Robert Ernens
We have just finalized an upgrade of all our code and jquery plug-ins to the new jquery 1.2.2 migrating from 1.1.3. We are heavily using ajax to build highly interactive web sites. Since the upgrade, we face a major issue with IE (we only tested IE 7, not IE 6 yet). While initially suspecting

[jQuery] Re: New and better demos

2008-01-30 Thread Ariel Flesler
I meant that you need to replace the '...' with the duration/settings that you want. If you have doubts, the demo exemplifies the settings pretty well. $pane should be the container that you scroll, $items the pictures, don't forget to set the 'overflow' of the $pane to 'hidden' or 'auto'. Cheers

[jQuery] Is this the best way?

2008-01-30 Thread Feijó
Hi, I was just wondering if there is any better way to accomplish that. Some divs has 'level' attribute, with a number. If that number is bigger than X, will remove the div. var x=4; // simulating level=parseFloat($this.attr('level')); $('.qualif').each(function() { if

[jQuery] Re: Rolodex plugin anyone?

2008-01-30 Thread Dan G. Switzer, II
Check this out: http://devcenter.yesmail.com/com.yesmail.magellan.gwt.rolodexdemo.RolodexDe moApp/RolodexDemoApp.html Does someone feels like porting this to jquery? I would love to, but that's far beyond my reach for the moment. Besides, i'm actively working on jquploader2 in my scarce free

[jQuery] Re: tableSorter question: how to disable the last header?

2008-01-30 Thread Leandro Vieira Pinho
Great. Perfect. Thanks. On Jan 25, 11:57 am, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi. I tried to use Widget or variable but without result. Than i edit table sorter plugin. It is very easy. In buildHeaders method after $tableHeaders = $(thead th,table); add this

[jQuery] Re: Is this the best way?

2008-01-30 Thread Joel Birch
Hi Feijó, Not sure if I understand, but I'll have a go at it: var x = 4; $('.qualif').filter(function() { return parseFloat( $(this).attr('level') ) x; }).remove(); Joel Birch.

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

2008-01-30 Thread Karl Swedberg
that's awesome, Jörn! Thanks for sharing that code. I'm looking forward to playing around with it. Cheers, --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Jan 29, 2008, at 6:49 PM, Jörn Zaefferer wrote: Karl Swedberg schrieb: Sorry for the

[jQuery] Re: Is this the best way?

2008-01-30 Thread Feijó
Thats it! Nice code Thanks Joel Feijó Joel Birch escreveu: Hi Feijó, Not sure if I understand, but I'll have a go at it: var x = 4; $('.qualif').filter(function() { return parseFloat( $(this).attr('level') ) x; }).remove(); Joel Birch.

[jQuery] simplemodal and datepicker

2008-01-30 Thread rayfidelity
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? Modal window is loaded through ajax...

[jQuery] Re: JQuery Size YUI Compressor mod_deflate/GZIP

2008-01-30 Thread Dan G. Switzer, II
Haha, you cracked me up :) I'm not sure of the figures for processing the packed version, however this would need to be done for every page of your site that the user visits because the JS is cached in packed form. This means that whatever the overhead is for unpacking the packed version, the

[jQuery] Re: .clone not work in FF or IE, please help

2008-01-30 Thread Brandon Aaron
jQuery.clone(true) will only clone the events that it knows about ... in other words ... it clones the events it bound. -- Brandon Aaron On Jan 29, 10:35 am, chrismarx [EMAIL PROTECTED] wrote: should clone also work for behaviors that were not added by jquery? (like a google map?) i tried to

[jQuery] Re: JQuery Size YUI Compressor mod_deflate/GZIP

2008-01-30 Thread Juha Suni SC
40-60% of Yahoo!'s users have an empty cache experience and ~20% of all page views are done with an empty cache. To my knowledge, there's no other research that shows this kind of information. And I don't know about you, but these results came to us as a big surprise. It says that even if your

[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 span id=scrollStats style=font-size: 70%; width: 80px; text- align: center; position: absolute; bottom: 392px; left: 15px;/span i have tried these but none seem to work

[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] 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 span id=scrollStats style=font-size: 70%; width: 80px; text- align: center; position: absolute; bottom: 392px;

[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 span

[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 Can someone please

[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

[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*

[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( 'td colspan=5' + ads + '/td' ) ; $(tr).addClass('ads'); $('table#' + tablename + ' tr.header').after(tr); Nothing happens. If I put some other html code into scalar

[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('script type=text/javascript ...GOGLEADSENSECODE... /script'); But it looks 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(){

[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] $.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

[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

[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 on the site.

[jQuery] Re: Manipulation of select 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 }); -- Josh

[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

[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 select 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 Message -

[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

[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 window is

[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.

[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: Manipulation of select 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] 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: 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 solution

[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:-

[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: 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:

[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:

[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[level3]').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: 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 all

[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 unconventional

[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 button. He

[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: [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: 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 found

[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: 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 ?

[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] 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 or

[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[level3]').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

[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( 'td colspan=5' + ads + '/td' ) ; $(tr).addClass('ads'); $('table#' + tablename + '

[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 select name=port id=port class={required: true} .../select // Port not found in previous list - values are strings select name=country id=country class={required: '#port[value=-1]'}.../select // Port not found in

[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 this?

[jQuery] random option for Cycle not working?

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

[jQuery] Re: Shadowbox Media Viewer

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

[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.

[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

[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

[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

[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,

[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

[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: [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

[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.

[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

[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 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, I set a

[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] 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

[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] 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 have a site where i need two

[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: 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 have

[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 select name=port id=port class={required: true} .../select // Port not found in previous list - values are strings select name=country id=country class={required: '#port[value=-1]'}.../select //

[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. script type=text/javascript $(document).ready(function(){$('#blurbs').cycle({fx:'turnDown',random: 1,timeout:1});}); /script Anyone

[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

[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

[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] 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. --

[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

[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/ ev:startdate ev:enddate ev:location ev:organizer ev:type Other resources are not using this standard tags,

  1   2   >