[jQuery] Re: add regex in $('.class')

2008-09-23 Thread ricardobeat
Right at the start: $('[class^=Round_gen]').filter(function(){ return /Round_gen[0-9]+/.test( $(this).attr('class') ); }).each(function(){ // at this point $(this) is a single element var $this = $(this); var params = $(this).attr('rel').split(':'); etc, etc. /*** you don't need this,

[jQuery] Re: Bind events on DOM elements inserted from other frame

2008-09-23 Thread ricardobeat
Hi, I can't test anything right now, but are you setting up the ready() function after appending the iframe? On Sep 23, 9:11 pm, hubbs <[EMAIL PROTECTED]> wrote: > Yeah, this really is not working.  Could someone please help me to > understand how to make multiple frames use the same jquery insta

[jQuery] Re: jScrollPane, hide dragscroll... possible?

2008-09-23 Thread expanism
You really helped me out here! Thanks!!! On 24 sep, 07:32, "Sam Sherlock" <[EMAIL PROTECTED]> wrote: > I used firebug console to test removing the jscrollbar > > my code is like this > >             >                 Updates - Recent Additions to this Site >                 << created by jquery

[jQuery] ready() function different when inside a frame?

2008-09-23 Thread hubbs
I have a frame that I want to use the same instance of jquery as in the parent window. Here is what I did: $ = window.parent.$; $(function() { $("#test").click(function() { $("#hold").append('Inserted from iFrame '); }); }); For some reason, the click event is not being bound, and the html

[jQuery] How to bind Window Resize with richFaces?

2008-09-23 Thread alee amin
hi, I am trying to use the jQuery splitter with richFaces, which i am able to integerate using tag. However, I am not able to make that "bind" function work with rich faces. I used the following query Can you people help me in binding it ? ..alee http://techboard.wordpress.com

[jQuery] Re: jScrollPane, hide dragscroll... possible?

2008-09-23 Thread Sam Sherlock
I used firebug console to test removing the jscrollbar my code is like this Updates - Recent Additions to this Site << created by jquery lorem ipsum dolar scrollbar div

[jQuery] datepicker plugin: question regarding date range

2008-09-23 Thread c.s
how do i get datepicker to display 5 days previous from date selected? bascially date range but i don't want to set it for being between specific dates. the fuctionality i'm looking for is user selects today date...date picker shows today's date and 4/5 days prior--i need to be able to retrieve th

[jQuery] Re: jScrollPane, hide dragscroll... possible?

2008-09-23 Thread expanism
The class of the jscrollpane is .pane3 so I tried $('.pane3ThisBar .jScrollPaneTrack').remove(); and also tried $('.pane3 .jScrollPaneTrack').remove(); but both did't work... $('#removeThisBar .jScrollPaneTrack').remove(); On 24 sep, 00:27, "Sam Sherlock" <[EMAIL PROTECTED]> wrote: > don't what

[jQuery] Re: Help with $.ajax() function

2008-09-23 Thread FrenchiINLA
try $.getJSON since you want to get json data somthing like $(document).ready(function(){ $("#peep").click(function(){ .getJSON(url, { request:'tes',message:'SupLawl' }, function(json) { alert(json.msg); } ); }); }); On Sep 23, 6:57 pm, Bockit <[EMAIL PROTECTED

[jQuery] Help with $.ajax() function

2008-09-23 Thread Bockit
Can't work this out myself so turning to others, chances are I'm missing something small, but let's see. I'm trying to use the $.ajax() function in my app, however it just isn't sending the GET data when I click on the link. $(document).ready(function(){ $("#peep").click(

[jQuery] Re: Any plug-ins that deal with formatting text?

2008-09-23 Thread Richard D. Worth
If you're looking for formatting in an actual textarea (not a rich editor/iframe), look no further than markItUp!: http://markitup.jaysalvat.com/home/ If you want more full-fledged wysiwyg editing, there a quite a few more options: jwysiwyg http://code.google.com/p/jwysiwyg/ WYMEditor http://www

[jQuery] Re: Dynamic created element doesn't respond to event

2008-09-23 Thread Richard D. Worth
See http://docs.jquery.com/Frequently_Asked_Questions#Why_doesn.27t_an_event_work_on_a_new_element_I.27ve_created.3F It contains a couple of workarounds. - Richard On Tue, Sep 23, 2008 at 8:03 PM, mario <[EMAIL PROTECTED]> wrote: > > Hi, > > I have a unordered list with some elements and after

[jQuery] Re: jQModal is "modaling" over target div content.

2008-09-23 Thread MorningZ
Is this in IE? If so (even if not), try adding the parameter "toTop: true" to the jqm declaration helped me out here http://groups.google.com/group/jquery-en/browse_thread/thread/a7b200301d36ce0f/6751840de0e969cc?

[jQuery] Re: jQuery noConflict breaks the galleria in IE 6 & 7

2008-09-23 Thread sutra
Any idea on this issue at all? It works if NO no-conflict is used: http://teesworks.com/testIE.html It breaks if no-conflict is used: http://teesworks.com/testIE-with-noconflict.html

[jQuery] Re: add regex in $('.class')

2008-09-23 Thread jeremyBass
Hello, ok... so thou yes it works... and I am thankful for you guys for helping, it through a monkey wrench into the fallowing code... may- be some one could give me a hand on "this" ... (thats was the area of issues before :-) here is the code with the changes as suggested above... $('[class^=

[jQuery] Re: Superfish jQuery competing with other js files

2008-09-23 Thread Joel Birch
Hi Aaron, LightWindow uses the Prototype library so you need to read up about using jQuery with other libraries, here: http://docs.jquery.com/Using_jQuery_with_Other_Libraries That page will tell you everything you need to know so you can use both libraries at the same time. However, a far bette

[jQuery] Re: Superfish - Disabling Animation

2008-09-23 Thread Joel Birch
2008/9/24 Charl Mert <[EMAIL PROTECTED]>: > How do I disable animations in superfish? $('ul.sf-menu').superfish({ speed: 1 }); This sets the animation speed (or "duration") to one microsecond which is basically instantaneous. Joel Birch.

[jQuery] Re: cross domain XML with ajax

2008-09-23 Thread Michael Geary
> I'm writing an OGC/WMS Viewer using jQuery. One task I need > to accomplish involves making a getCapabilities request > against a Web Mapping Service, which responds with some XML. > > I know that the $.ajax function allows me to get JSON from > another domain, but is there a way to get XML

[jQuery] Re: superfish menu only drops down

2008-09-23 Thread Joel Birch
I think I misunderstood the original question. @tsnj do a search for the "Supposition" plugin. It was created to do exactly what you want. It never left beta as I think there was still a minor bug that I wasn't satisfied with but didn't get around to solving. You may find it works fine for what yo

[jQuery] Re: Getting Superfish menus to overlap in IE

2008-09-23 Thread Joel Birch
Great stuff Ricardo! Thanks for doing this. Just a small warning: you said "which equals the element's index in relation to its parent". Whilst this probably does work in most cases, be aware that (as far as I know) DOM elements are not guaranteed to be returned in the order they appear in the so

[jQuery] Re: Find() doesn't want to find anything out of the body

2008-09-23 Thread MindstormsKid
ricardobeat wrote: > > 1. I don't see the point in loading a full HTML page with ajax, you > could load snippets of HTML or XML data instead. > Well, In my case I need to... ricardobeat wrote: > > 2. You can't have text directly inside , they have to be inside > a block-level element. That's

[jQuery] product grid plugin

2008-09-23 Thread cc96ai
does jquery have any plugin like magento product grid ? http://demo.magentocommerce.com/bed-and-bath/living-room

[jQuery] Getting page width to insert into body tag

2008-09-23 Thread bmclaughlin
Hello, I am fairly new to jQuery so please keep that in mind I have a css 2 column layout with a left side menu. ex: | // | | | menu |content area | | // | | On one of the pages th

[jQuery] Dynamic created element doesn't respond to event

2008-09-23 Thread mario
Hi, I have a unordered list with some elements and after some action I add another element to the list, but it doesn't respond to the click event set to the list elements. Example: Pre existing LIST: One Two Three JS click event: $('a.clicked').click(function(){ alert('clicked');

[jQuery] jQModal is "modaling" over target div content.

2008-09-23 Thread urbolutions
OK, this is kind of odd. Hopefully it is something relatively simple. I have a div set with modal target and inner AJAX content target defined as: I have a JS Function with calls to jqModal as such: $('#modalFormContainer').jqm({ajax: '../modules/dispatcher/index.php? mod=content&op=modalForm

[jQuery] cross domain XML with ajax

2008-09-23 Thread philosaur
Hi! I'm writing an OGC/WMS Viewer using jQuery. One task I need to accomplish involves making a getCapabilities request against a Web Mapping Service, which responds with some XML. I know that the $.ajax function allows me to get JSON from another domain, but is there a way to get XML from anot

[jQuery] Re: Getting Superfish menus to overlap in IE

2008-09-23 Thread ricardobeat
It's quite simple, the each() function already passes a variable to the inner function, which equals the element's index in relation to is parent. --> this is index 0 --> index 1 --> 2 etc What my code does is iterate over all the elements and for each one, give it the inline css

[jQuery] Re: Get parent url and add to a textarea

2008-09-23 Thread ricardobeat
$('#message") returns a jQuery object, which is 'array-like' (as the docs say). Arrays start at position zero, so [0] is asking for the first element in the array (which happens to be the only one). For example, $('#list li')[2] would give you the 3rd element from that object. Note that this give

[jQuery] Re: Find() doesn't want to find anything out of the body

2008-09-23 Thread ricardobeat
Hmm. 1. I don't see the point in loading a full HTML page with ajax, you could load snippets of HTML or XML data instead. 2. You can't have text directly inside , they have to be inside a block-level element. That's why getting a 's content works. Try doing $('body').load('test2.html') on the p

[jQuery] Re: how to add elements to a jQuery object without copying it

2008-09-23 Thread Michael Geary
> From: ~flow > > the second suggestion does work; however, the > pre-incrementing index has to be written as a > post-incrementing index, like this: > > var t = $( '.foo' ); > var s = t; > t[ t.length++ ] = $Q( '.bar' )[ 0 ]; // should now like > like $ ( '.foo,.bar' ) > assert( s ==

[jQuery] Re: add regex in $('.class')

2008-09-23 Thread ricardobeat
There is no need for quotes as everything is already a string. Jeremy, you need to understand what's going on: $('[class^=Round_gen]').filter(function(){ // checks for any element where the 'class' attribute starts with 'Round_gen' return /Round_gen[0-9]+/.test( $(this).attr('class') ); //

[jQuery] Re: Bind events on DOM elements inserted from other frame

2008-09-23 Thread hubbs
Yeah, this really is not working. Could someone please help me to understand how to make multiple frames use the same jquery instance so I can resolve this problem? Do I need to resort to frame ready plugin? I really don't want to... On Sep 17, 7:12 pm, ricardobeat <[EMAIL PROTECTED]> wrote: >

[jQuery] Re: no callback for css/addClass?

2008-09-23 Thread ricardobeat
Yeah, it's just like doing $('color','red'); alert('color changed'); On Sep 23, 5:15 pm, MorningZ <[EMAIL PROTECTED]> wrote: > Callbacks are used to know when asynchronous events are complete... > setting the css or class doesn't happen asynchronously

[jQuery] Re: Get Lightbox and Innerfade plugins work together

2008-09-23 Thread redcirce
Ricardo, I had tried this already but it did not help. My understanding of the "safe function" is that it works to avoid conflicts between different libraries, ie. prototype and jquery. Both plugins/scripts (that I'm using at least) are jquery plugins. Amine, I wondered whether you had had any

[jQuery] Re: HTA + Jquery

2008-09-23 Thread Jarodium
Hi there Karl Thank you for replying. I have the following, just to make sure that i'm not confusing anyone: 1st - I run the hta within Windows. 2nd - I call jquery to load a page from the localhost Here is someting from the server logs that might help clears things up: 127.0.0.1 localhost - [

[jQuery] Baffling input problem

2008-09-23 Thread mdrisser
Here's the scenario. I have a series of text inputs with a class of 'online', I want to update a total everytime an input with the class of 'online' is changed. Basically like a spreadsheet doing an auto sum on a column. The total is put into two places, a div and a hidden input. Here's the code

[jQuery] Re: jScrollPane, hide dragscroll... possible?

2008-09-23 Thread Sam Sherlock
don't what your id is but $('#removeThisBar .jScrollPaneTrack').remove(); 2008/9/23 expanism <[EMAIL PROTECTED]> > > That works great, Thanks! > > I have multiple jscrollpane's set up on one page, like this: > > $('.pane').jScrollPane({showArrows:true, scrollbarWidth: 29, > dragMinHeight: 50, dra

[jQuery] Re: HTA + Jquery

2008-09-23 Thread Karl Rudd
If the initial page loaded from the "http://localhost"; domain and you try to access a file via a "file://" URL then the browser (not jQuery) will stop you. You'd have to make the file you wanted to access available via the same domain "http://localhost"; HTAs can be very different beasts to "nor

[jQuery] Re: how to add elements to a jQuery object without copying it

2008-09-23 Thread ~flow
oops, little typo---got to use `$Q` instead of `$` in my project. wrote an extension method: jQuery.fn.push = function( selector_or_nodes ) { // Given a selector or a jQuery object, append all of the nodes to the current jQuery object. var nodes = $is_string( selector_or_nodes )? $Q( selecto

[jQuery] Re: [autocomplete] + [ajaxqueue] confusion

2008-09-23 Thread D.Kreft
On Sep 20, 5:33 am, "Jörn Zaefferer" <[EMAIL PROTECTED]> wrote: > None of that is "regis-authored". The plugin, as released on > plugins.jquery.com provides similar features but a different API. The > in SVN was written by me, while autocomplete leverages only the > abort-option. So as long as yo

[jQuery] General JavaScript opitmization question

2008-09-23 Thread AdamV
I'm writing an AJAXy application and when I start doing an ajax call, I want to block the UI and show a loading graphic until the loading is done. For various reasons, a number of different functions might initiate a load and a number might signal its end, and in a particular sequence two such fun

[jQuery] Re: jQuery Cycle - Get Current Slide Number

2008-09-23 Thread Phillip
Thanks for the reply. I gave it shot, but still no dice. The good news is opts.slideCount is working. But opts.nextSlide doesn't seem to update when you click ahead. Any ideas on what to try next?

[jQuery] Re: how to add elements to a jQuery object without copying it

2008-09-23 Thread ~flow
thanx a lot, i think i’ve got it. actually, the first part of your answer does not work for me---with `add`, a new collection is returned. this breaks object identity (hence, you cannot keep a reference from another variable to the jQuery object in question once you've done `add`). the second su

[jQuery] Re: superfish menu only drops down

2008-09-23 Thread tsnj
Sounds reasonableif only I knew what I was doing! Just back from a trip so plenty busy, I'll see what I can come with in the next day or two.

[jQuery] Re: jScrollPane, hide dragscroll... possible?

2008-09-23 Thread expanism
That works great, Thanks! I have multiple jscrollpane's set up on one page, like this: $('.pane').jScrollPane({showArrows:true, scrollbarWidth: 29, dragMinHeight: 50, dragMaxHeight: 50}); $('.pane2').jScrollPane({showArrows:true, scrollbarWidth: 29, dragMinHeight: 50, dragMaxHeight: 50}); $('.pa

[jQuery] Re: A better way to animate this list..?

2008-09-23 Thread PaulC
Cheers Guys, a great help!!

[jQuery] Re: jScrollPane, hide dragscroll... possible?

2008-09-23 Thread Sam Sherlock
try $('.jScrollPaneTrack').remove(); more info http://jquery.bassistance.de/api-browser/#removeString 2008/9/23 expanism <[EMAIL PROTECTED]> > > Thanks for your reply, it is a good fast solution... however it would > be great if the whole bar could be out of the code. > > On 23 sep, 22:02, "Sam

[jQuery] Re: add regex in $('.class')

2008-09-23 Thread tlphipps
Just need some quotes around the class name (I forgot to include some quotes in my example too) This should work: $("[class^='Round_gen']") On Sep 23, 4:04 pm, jeremyBass <[EMAIL PROTECTED]> wrote: > So tring to get this going  I did > > var n = ''; > $('[class^=Round_gen]').filter(function(){ >

[jQuery] Re: How to select option in SELECT

2008-09-23 Thread MorningZ
MUCH easier than even that $("#choose").val("2"); would select "Dog" On Sep 23, 5:07 pm, ricardobeat <[EMAIL PROTECTED]> wrote: > Cheese > > or > > $('#choose [value=1]').attr('selected','selected'); > > On Sep 23, 11:26 am, "J.A. Oord" <[EMAIL PROTECTED]> wrote: > > > How do I set the sel

[jQuery] Re: Find() doesn't want to find anything out of the body

2008-09-23 Thread ricardobeat
If you post a link to a test page somebody might be able to help. - ricardo On Sep 23, 4:28 pm, MindstormsKid <[EMAIL PROTECTED]> wrote: > I'm making something that involves loading an HTML page with $.ajax(). I want > to get the content of the page title and the content of the body, so I did >

[jQuery] Re: How to select option in SELECT

2008-09-23 Thread ricardobeat
Cheese or $('#choose [value=1]').attr('selected','selected'); On Sep 23, 11:26 am, "J.A. Oord" <[EMAIL PROTECTED]> wrote: > How do I set the selected value in a SELECT? > > ie: I have this form: > > >    Cheese >    Dog > > > and I want Dog to be the selected item. How do I do this?

[jQuery] Re: how to add elements to a jQuery object without copying it

2008-09-23 Thread ricardobeat
a jQuery object is not a real array. The add() function does what you want: var foobar = $('.foo').add('.bar'); If you want to add elements manually use: var $foo = $('.foo'); $foo[ ++$foo.length ] = $('.bar')[0]; - ricardo On Sep 23, 4:35 pm, "~flow" <[EMAIL PROTECTED]> wrote: > i seem to re

[jQuery] Re: add regex in $('.class')

2008-09-23 Thread jeremyBass
So tring to get this going I did var n = ''; $('[class^=Round_gen]').filter(function(){ return /Round_gen[1-9][0-9]+/.test( $(this).attr('Round_gen') ); }).each(function(){ var n = $(this).attr('Round_gen').match(/[0-9]+/); }); $('.Round_gen'+n+'').each(function() {...ect and Got it

[jQuery] Re: New jQuery logo usage on tshirts and stuff

2008-09-23 Thread Rey Bango
Hi Manuel, I think you're confused. I replied to the mailing list and not you directly. Rey.. manuel huertas wrote: hello Rey, I think you sent this email to the wrong person I am not Aaron, my name is manuel huertas , username: manuqc. Please verify the email address where you sent this

[jQuery] Re: jScrollPane, hide dragscroll... possible?

2008-09-23 Thread expanism
Thanks for your reply, it is a good fast solution... however it would be great if the whole bar could be out of the code. On 23 sep, 22:02, "Sam Sherlock" <[EMAIL PROTECTED]> wrote: > perhaps setting the bar to display none with css. > > seems to work in a (very) basic test I have done in firebug

[jQuery] Re: superfish menu only drops down

2008-09-23 Thread tsnj
Sounds reasonableif only I knew what I was doing! Just back from a trip so plenty busy, I'll see what I can come with in the next day or two.

[jQuery] Re: How to unbind and rebind cluetips plug-in?

2008-09-23 Thread Karl Swedberg
If the problem is that it's caching the results of the ajax request, you can avoid this by setting the ajaxCache option to true --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Sep 23, 2008, at 12:00 PM, ngadde wrote: There is any we can unbind all the

[jQuery] two scripts listening to focus event and 1 not seeing

2008-09-23 Thread Gltych
my script uses a focus event to run a function but there is another script on the page that I think uses the same event on the same object to run it's function so my function isn't excecuting. I know the script is running because it adds an image to below the form and no errors are showing up. t

[jQuery] Re: no callback for css/addClass?

2008-09-23 Thread MorningZ
Callbacks are used to know when asynchronous events are complete... setting the css or class doesn't happen asynchronously

[jQuery] Re: select form fields inside a div

2008-09-23 Thread MorningZ
http://docs.jquery.com/Selectors/child#parentchild $("#"+form+" > :input Drop the ">" in your selector, which literally means "a direct child of this", to which is *not* the case with your 's in between and

[jQuery] Re: jQuery Cycle - Get Current Slide Number

2008-09-23 Thread Mike Alsup
>     $(function(){ >                 $(slideShow).cycle({ >                   timeout: 0, >                   speed: 500, >                   fx: 'fade', >                   prev: slideShow + '_prev', >                   next: slideShow + '_next', >                   before: function() { >      

[jQuery] Re: jScrollPane, hide dragscroll... possible?

2008-09-23 Thread Sam Sherlock
perhaps setting the bar to display none with css. seems to work in a (very) basic test I have done in firebug - S 2008/9/23 expanism <[EMAIL PROTECTED]> > > Love the jScrollPane really exelent plugin! > > There is a parameter called: showArrows, > Is there a parameter like hideDrag to hide the d

[jQuery] HTA + Jquery

2008-09-23 Thread Jarodium
Hello I have this HTA setup so that I can fire lighthttpd for windows. After my application starts, I press a link which will fire a function that calls http://localhost/tk_project.php using Jquery's $.ajax My debugging have shown that the Ajax request ( POST and GET methods ) are resulting in a

[jQuery] Re: flv page turner

2008-09-23 Thread Robert Koberg
Hi, Hopefully this is not too OT. I have a page turner web app that should play a new audio FLV for each new view in Thickbox. It works for me on OS X with FF, Safari and Opera. It does not work for (2) folks on Windows -- with FF the pages turn, but no audio. On Windows IE, the pages don't tur

[jQuery] jQuery Image Fade (innerfade) random image slideshow

2008-09-23 Thread dsizemore
Hi, I'm using this: http://medienfreunde.com/lab/innerfade/ on a site and I have the slide show set to "random." I have 10 images in my slide show and it does in fact display them randomly, but it only does so after the first image is loaded. It loads the same image first every single time, but a

[jQuery] accordion issue

2008-09-23 Thread manuqc
Hello, I'm developing a website and added an accordion section to the homepage, so far it works pretty good, I am just having a little problem,all of the links are closed by default I will like to know how can I get to have the first one opened by default. this is the link while I'm still devel

[jQuery] jScrollPane, hide dragscroll... possible?

2008-09-23 Thread expanism
Love the jScrollPane really exelent plugin! There is a parameter called: showArrows, Is there a parameter like hideDrag to hide the dragscroll and only have the arrows. or is there an other way to hide the dragscroll? Thanks

[jQuery] music

2008-09-23 Thread seema seema
clikc hear enjoy http://www.freewebs.com/polymorphis/ Find music videos, internet radio, music downloads and all the latest music news and information on Yahoo! Music.

[jQuery] Re: New Plugin - Agile Carousel - Looking For FeedBack

2008-09-23 Thread Phillip
Worked well for me (FF3 Mac). Pretty cool... those timer options will be handy. Good stuff.

[jQuery] http://worldtouristplacesnew.blogspot.com/

2008-09-23 Thread INFERNOUS SAM
*SEXY NEW FACTION GIRLS IN NEW TOURIST*

[jQuery] no callback for css/addClass?

2008-09-23 Thread Alex Weber
i guess it makes sense since in most cases its instant but it would be useful to have a callback as in: $('#myDiv').css('color','red', function(){ alert('color changed!'); }); addClass() doesnt have a callback either... is there any particular reason for this? thanks!

[jQuery] Any plug-ins that deal with formatting text?

2008-09-23 Thread kgosser
Hey all, I'm looking for a jQuery plug-in that will help with formatting text in a textarea. Something like Wordpress' or Gdoc's formatting bar. Basically I want to be able to bold/italicize/etc. text for users without them having to understand HTML. Any direction to an existing plug-in would b

[jQuery] how to add elements to a jQuery object without copying it

2008-09-23 Thread ~flow
i seem to remember i asked this question before, but am unable to retrieve that post---given a jQuery object with a collection of DOM nodes, how can i append another DOM node (like `[].push()` would do) to that collection without breaking object identity? i need var t = $( '.foo' ); var s = t

[jQuery] How to select option in SELECT

2008-09-23 Thread J.A. Oord
How do I set the selected value in a SELECT? ie: I have this form: Cheese Dog and I want Dog to be the selected item. How do I do this?

[jQuery] Select multiple ULs both with the same class name

2008-09-23 Thread althanis
Hey all, I'm using Better Coda Slider from this link: http://jqueryfordesigners.com/coda-slider-effect/ The part of the code that I need fixed for my site is here: function selectNav() { $(this) .parents('ul:first') .find('a') .removeClass(

[jQuery] Need help with jQuery array

2008-09-23 Thread Jim Davis
I am adapting Greg-J's hover fade methodto a navigation menu. Demo of my menu is here: http://jimdavis.org/celtic/fadetest.php If you view the source code you will see that I repeat the jQuery function for each menu item. Since this nav menu

[jQuery] popup content

2008-09-23 Thread cecil
Hello ... i am fairly new to jquery. i was wondering if anyone knew of a way i could emulate the functionality of the popup control of the asp.net ajax control toolkit. i want to display a list of check box items when an input text field is in focus. thank you in advance http://www.asp.net/AJAX/A

[jQuery] Superfish - Disabling Animation

2008-09-23 Thread Charl Mert
Hi, How do I disable animations in superfish? Thanx --Charl

[jQuery] select form fields inside a div

2008-09-23 Thread jerkan
Hi, I want to validate my form fields but jquery does not select them if they are inside a div (using UI Tabs). function checkRequiredFields(form, error_msg) { var resultado = false; $(document).ready(function(){ $("#"+form+" > :input[id$='_required']").each(func

[jQuery] flv page turner

2008-09-23 Thread Rob
Hi, Hopefully this is not too OT. I have a page turner web app that should play a new audio FLV for each new view in Thickbox. It works for me on OS X with FF, Safari and Opera. It does not work for (2) folks on Windows -- with FF the pages turn, but no audio. On Windows IE, the pages don't turn

[jQuery] autosuggest help

2008-09-23 Thread allan2008
Hello. I'm trying to figure out the bassistance jQuery plugin: Autocomplete. >From what I can gather if I want to get results remotely they must be held in an external php file (ie. search.phps). Is it possible for the plugin to get results directly from a mysql table? If so how can I get it to s

[jQuery] Find() doesn't want to find anything out of the body

2008-09-23 Thread MindstormsKid
I'm making something that involves loading an HTML page with $.ajax(). I want to get the content of the page title and the content of the body, so I did $(page).find("title").text(), but that doesn't work (returns ""). I tried getting the content of the body, which also didn't work. I tried getti

[jQuery] Re: New jQuery logo usage on tshirts and stuff

2008-09-23 Thread manuel huertas
hello Rey, I think you sent this email to the wrong person I am not Aaron, my name is manuel huertas , username: manuqc. Please verify the email address where you sent this message. thanks. > Date: Tue, 23 Sep 2008 12:23:36 -0400 > From: [EMAIL PROTECTED] > To: jquery-en@googlegroups.com > Sub

[jQuery] Remove comment script

2008-09-23 Thread johhnnyboy
Hello, Im looking for a jquery script that allowes removing comments (which are placed in divs) for the site with an animation and then removes it also from my database. Something similar to hyves comments system.

[jQuery] jQuery Cycle - Get Current Slide Number

2008-09-23 Thread Phillip
Hi everyone, I'm having a tiny issue with jQuery cycle that I'm hoping someone may be able to help out with. I have a page has multiple slide shows in it, and have written a little script to loop over and implement the function. I'd also like to diplay the current slide number under each sideshow

[jQuery] Re: Creating an horizontal menu sortabl'ing

2008-09-23 Thread Nitsan Bin-Nun
I don't know why but for unreasonable reason I couldn't post this messege to the list. 2008/9/23 Nitsan Bin-Nun <[EMAIL PROTECTED]> > Hi, > I would like to create a horizontal menu sortables > I want the buttons to be placed in this form: > button1 | button2 | button3 > > I would like it to work

[jQuery] How to unbind and rebind cluetips plug-in?

2008-09-23 Thread ngadde
There is any we can unbind all the events and rebind the cluetips events. It's seems to be it's Cacheing url's and its data.when these url data changed dynamiclay it's loading from cacheing url. Thanks

[jQuery] Select multiple ULs both with the same class name

2008-09-23 Thread althanis
Hey all, I'm using Better Coda Slider from this link: http://jqueryfordesigners.com/coda-slider-effect/ The part of the code that I need fixed for my site is here: function selectNav() { $(this) .parents('ul:first') .find('a') .removeClass(

[jQuery] Accordion working fine, just needing to make a small modification

2008-09-23 Thread manuqc
Hello, I'm developing a website and added an accordion section to the homepage, so far it works pretty good, I am just having a little problem,all of the links are closed by default I will like to know how can I get to have the first one opened by default. this is the link while I'm still dev

[jQuery] Re: New Plugin - Agile Carousel - Looking For FeedBack

2008-09-23 Thread Phillip
Worked well for me (FF3 Mac). Pretty cool... those timer options will be handy. Good stuff.

[jQuery] Re: Getting Superfish menus to overlap in IE

2008-09-23 Thread Aaron
Two questions? Wouldn't I have to still pass a value for i for each instantiation of an li? Or do I not quite understand how this works? Basically could you explain how this works a little bit so that I fully understand the jQuery and JS behind it. I would really appreciate that. The other quest

[jQuery] Re: add regex in $('.class')

2008-09-23 Thread jeremyBass
So let say the class was named Round_gen9 I'd replace $('.Round_gen9'').each(function() {etc with $('[class^=Round_gen]').filter(function(){ return /Round_gen[0-9]+/.Round_gen( $(this).attr('Round_gen') ); }).each(function(){ var n = $(this).attr('Round_gen').match(/[0-9]+/);

[jQuery] Re: add regex in $('.class')

2008-09-23 Thread ricardobeat
Using [class^=class] is your best bet, the other option is to loop over all the possibilities and that is a no-go. Coupled with the filter function this will give you all elements with classX where X is a number: $('[class^=class]').filter(function(){ return /class[0-9]+/.test( $(this).attr(

[jQuery] Re: Get Lightbox and Innerfade plugins work together

2008-09-23 Thread ricardobeat
hi, you can wrap all of your code in a "safe function" to avoid conflicts with other libraries that use '$': (function($){ // your jQuery code goes here })(jQuery); -ricardo On Sep 23, 5:32 am, "Amine CHRAIBI" <[EMAIL PROTECTED]> wrote: > Hey, > > Thanks for your prompt answer, I will give i

[jQuery] Re: A better way to animate this list..?

2008-09-23 Thread ricardobeat
didn't notice that, thanks a lot! - ricardo On Sep 23, 1:00 am, Eric <[EMAIL PROTECTED]> wrote: > You can trim it down a bit by using the index that each() passes to > the callback function: > > $('#jq-secondaryNavigation li').each( function(i) { >      var that = $(this); >     setTimeout(  fun

[jQuery] Re: Getting Superfish menus to overlap in IE

2008-09-23 Thread ricardobeat
or better yet (thanks Eric!): $('#menu li').each(function(i){ $(this).css('z-index',10-i); }); - ricardo On Sep 23, 3:06 pm, ricardobeat <[EMAIL PROTECTED]> wrote: > $('#menu li').each(function(){ >  var zindex = 10 - $(this).parent().find('li').index(this); >  $(this).css('z-index',zindex)

[jQuery] Re: add regex in $('.class')

2008-09-23 Thread jeremyBass
That is sort of what I'm aimming at... I'm looking to find the last part... they are all class0 class1 class99, but I want to do something for each one. basicly tring to find .class(someNUMBER) hope that makes more sense... thanks for the help jeremyBass On Sep 23, 9:38 am, tlphipps <[EMAIL PRO

[jQuery] Re: Getting Superfish menus to overlap in IE

2008-09-23 Thread ricardobeat
$('#menu li').each(function(){ var zindex = 10 - $(this).parent().find('li').index(this); $(this).css('z-index',zindex); }); On Sep 23, 10:12 am, Aaron <[EMAIL PROTECTED]> wrote: > Unfortunately I don't understand the jQuery enough to put something > like that together. Anyone else understand i

[jQuery] Re: Reset Validation with new rules

2008-09-23 Thread MACE
Anything?

[jQuery] Re: Get element by class based on document.location variable

2008-09-23 Thread PaulC
I fixed it: $("." + currentSection).next().slideDown(500); missed the next() I guess I need aa break! On Sep 23, 6:27 pm, PaulC <[EMAIL PROTECTED]> wrote: > I have a set of lists with child elements – these are my navigation. > Each top level list item a has a class that corresponds to a given

  1   2   >