[jQuery] Re: jQuery 1.1.3 - CSS/XPath selector bug?

2007-07-03 Thread jcsiegrist
Hi, I'm getting the same error on $('[EMAIL PROTECTED]/common.js]') error on line 2689: "z has no properties" this used to work under 1.1.2 I've tried adding backslashes to the period and forward slashes, but that did not help. :jc On Jul 3, 12:49 pm, Bernd Matzner <[EMAIL PROTECTED]> wrot

[jQuery] Re: Behaviour difference in XML document selectors in 1.13?

2007-07-03 Thread Ted McFadden
Hi, Thanks for the fix. It works in firefox, but in IE7, selection appears to still go wrong down in 'unique' (jquery 1.1.3, line 624) which is called by find: the: first[i].mergeNum assignment raises a: Object doesn't support this property or method. I see this error when

[jQuery] Re: jQuery plugin architecture info

2007-07-03 Thread Brian Cherne
Hi Ben, I like your plug-in. It makes me giggle when I try to click the buttons on your demo page... it reminds me of so many things in life. :) Aside from that editorial comment I have some other feedback to use at your discretion. Personally, I am a big fan of spelling out the document.ready bl

[jQuery] Re: How to select the kast TR of a TABLE?

2007-07-03 Thread Karl Rudd
Almost. There's a few to many spaces in there. Try this: var row = jQuery("#test > tbody > tr:last"); Or if you don't have any other 'thead's or 'tbody's in the table then: var row = jQuery("#test tr:last"); Karl Rudd On 7/4/07, howa <[EMAIL PROTECTED]> wrote: var row = jQuery("#test

[jQuery] How to select the kast TR of a TABLE?

2007-07-03 Thread howa
var row = jQuery("#test > tbody > tr : last"); something like that? (of coz the above one didn't work) thanks.

[jQuery] Re: $("#container > element.class") possible, but what about everything except a class?

2007-07-03 Thread John Resig
Sure it works: http://dev.jquery.com/~john/test/not.html Glen: You don't wanna be using the attribute selectors that you mention, they won't work like you'd hope (on only one class) or very slowly (class selection is highly optimized). --John On 7/3/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wr

[jQuery] Re: $("#container > element.class") possible, but what about everything except a class?

2007-07-03 Thread Glen Lipka
Whipped up a demo page: http://www.commadot.com/jquery/selectors/ I think this is doing what you want. John I haven't tried, but I assume that this is impossible: $("div[rel~!=foo]") to mean doesn't contain foo. Is that correct? Glen On 7/3/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: I

[jQuery] Re: Resizing a iframe to height=100% using jQuery

2007-07-03 Thread Glen Lipka
Whipped up a Demo page: http://www.commadot.com/jquery/dimensions/iframe.htm I did height and width. I only checked in FF and IE. Glen On 7/3/07, Kia Niskavaara <[EMAIL PROTECTED]> wrote: I've seen several attempts to resize a iframe to fill up the rest of the window. This is an example of ho

[jQuery] Re: jqDnR + jqModal -- dragging causes jump in IE & Safari

2007-07-03 Thread rolfsf
that makes some sense, but if it were the case, why wouldn't Firefox jump too? perhaps we'll have to wait for Brice... Brian Cherne wrote: > > It's hard to read Brice's minimalist (elegant and light) code style... but > I > suspect the reason it's breaking is on line 27: > > var f=function(w

[jQuery] Re: Question about selectors

2007-07-03 Thread Daniel Hollocher
Perfect! Thanks, just the info I needed. Dan On 7/3/07, Dan G. Switzer, II <[EMAIL PROTECTED]> wrote: > > > Dan, > > >I tried $('table#my_id/tr') but that doesn't find anything. > > Try: > > $('table#my_id tr') > > - or - > > $('table#my_id/tbody/tr') > > >Then, I tried $('table#my_id').children(

[jQuery] Interface ToolTip

2007-07-03 Thread RazboiniK
Hello I'm using iTooltip plugin, the original element has a onmouseover function which changes the self.status, but the plugin disables it 'cause it binds its own function, i was wondering how could i change the self.status within' iToolTip.show() Or put it this way how can i tell jquery to chan

[jQuery] Resizing a iframe to height=100% using jQuery

2007-07-03 Thread Kia Niskavaara
I've seen several attempts to resize a iframe to fill up the rest of the window. This is an example of how to do it: http://brondsema.net/blog/index.php/2007/06/06/100_height_iframe How do I do the same thing using jQuery?

[jQuery] Re: $("#container > element.class") possible, but what about everything except a class?

2007-07-03 Thread [EMAIL PROTECTED]
I see. It doesn't appear to work for elements that have two classes : ( for instance On Jul 3, 6:40 pm, "John Resig" <[EMAIL PROTECTED]> wrote: > $("#container > element.class:not(.class2)") > > Enjoy! > > --John > > On 7/3/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > > > > I'd like to

[jQuery] Re: .fadeOut In mutiple elements don't work. why? what's wrong?

2007-07-03 Thread Alexsandro_xpt
=/ Sorry, but I can't have objects contains like that.. My HTML is like that: hi bye . . . . . . . ...table info... thank you.

[jQuery] Re: Tabs plugin, using iframes

2007-07-03 Thread Kia Niskavaara
> > > > > > Thank you for your suggestion. Yes, it does work. One problem though: > > I've got lots of tabs. And the src of all iframes get loaded at once. > > I'd prefer if each iframe got loaded when I click on that tab, using the > > loading.gif -- like the remote:true (ajax) functionality. Is t

[jQuery] Re: 1.1.3 speed regression for selection of tags

2007-07-03 Thread Karl Rudd
I've added a ticket for this (minor) bug: http://dev.jquery.com/ticket/1351 Karl Rudd On 7/3/07, Renato Formato <[EMAIL PROTECTED]> wrote: Karl Rudd ha scritto: > > Just been going through some of my current work and seeing what > improvements come with jQuery 1.1.3. Unfortunately it look

[jQuery] jdMenu : top level items with no link

2007-07-03 Thread Jack Killpatrick
I'm using the jdMenu plugin (rev 1.3.beta2). I've got some top level menu items that have something like this in them: Menu Item Using firebug, I've confirmed that href="". I was hoping those would not get the click event, but they do: when clicked, the page just reloads itself, regardless

[jQuery] Re: $("#container > element.class") possible, but what about everything except a class?

2007-07-03 Thread Ganeshji Marwaha
wow, this is amazing... i never knew u can have something like " element.class" within the selectors. i was about to suggest something along the lines of $("#container>child:not('.class2')"); where #container is the id of the parent element whose child elements u wanna select. child is the tagna

[jQuery] Re: $("#container > element.class") possible, but what about everything except a class?

2007-07-03 Thread Glen Lipka
Would this also work in 1.1.3? $("#container > [EMAIL PROTECTED]") untested. Glen On 7/3/07, John Resig <[EMAIL PROTECTED]> wrote: $("#container > element.class:not(.class2)") Enjoy! --John On 7/3/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > I'd like to be able to select all eleme

[jQuery] Re: jQuery plugin architecture info

2007-07-03 Thread Jörn Zaefferer
Hi Ben, nice to see you on this list! Thanks for the feedback. I wasn't sure if the THIS scope was bad to use since it pointed to the jQuery object itself. But I guess, the whole point of the plugin is that you are extending the very nature of the jQuery object. I haven't seen that approach b

[jQuery] Re: $("#container > element.class") possible, but what about everything except a class?

2007-07-03 Thread John Resig
$("#container > element.class:not(.class2)") Enjoy! --John On 7/3/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: I'd like to be able to select all elements in a container except element.class2 for example, is that possible? Thanks... haven't found any docs on this!

[jQuery] $("#container > element.class") possible, but what about everything except a class?

2007-07-03 Thread [EMAIL PROTECTED]
I'd like to be able to select all elements in a container except element.class2 for example, is that possible? Thanks... haven't found any docs on this!

[jQuery] Re: Assigning a var to a jquery object?

2007-07-03 Thread [EMAIL PROTECTED]
Thanks, I was just trying to set a class member with a jquery object and then accessing it in a seperate function and it wasn't working. I've got a work around. Thanks! On Jul 3, 5:48 pm, "Glen Lipka" <[EMAIL PROTECTED]> wrote: > The two lines are confusing me a little. > > Setting a variable our

[jQuery] Re: Assigning a var to a jquery object?

2007-07-03 Thread Glen Lipka
My bad. Been a long day. :) On 7/3/07, Ganeshji Marwaha <[EMAIL PROTECTED]> wrote: Glen, As per jQuery docs, attr() method retrieves the attribute of the first matched element. Hope that clears the confusion. http://docs.jquery.com/DOM/Attributes -GTG. On 7/3/07, Glen Lipka <[EMAIL PROTECTE

[jQuery] Re: Assigning a var to a jquery object?

2007-07-03 Thread Ganeshji Marwaha
Glen, As per jQuery docs, attr() method retrieves the attribute of the first matched element. Hope that clears the confusion. http://docs.jquery.com/DOM/Attributes -GTG. On 7/3/07, Glen Lipka <[EMAIL PROTECTED]> wrote: The two lines are confusing me a little. Setting a variable our of a jQue

[jQuery] Re: Assigning a var to a jquery object?

2007-07-03 Thread Glen Lipka
The two lines are confusing me a little. Setting a variable our of a jQuery object: var jElement = $("SOME CSS"); This finds all of the nodes that match the "SOME CSS" selector and puts them in a jQuery object called jElement. It could be 1 element or many depending on how many it finds that mat

[jQuery] Re: Question about selectors

2007-07-03 Thread Dan G. Switzer, II
Dan, >I tried $('table#my_id/tr') but that doesn't find anything. Try: $('table#my_id tr') - or - $('table#my_id/tbody/tr') >Then, I tried $('table#my_id').children(). That returns this >mysterious element. This element contains, for its own >children, the children of the original table.

[jQuery] Re: Assigning a var to a jquery object?

2007-07-03 Thread Dan G. Switzer, II
>Example: > >var jElement = $("#"+element).attr("id"); In the above code, jElement would be equal to the "id" of first matched selector (if there was one.) >alert(jElement.attr('id')); I think maybe you're looking for: var jElement = $("#"+element); alert(jElement.attr('id')); However, in thi

[jQuery] Re: Using jCarouselLite w text, as a menu?

2007-07-03 Thread Kia Niskavaara
I've now tried the tabs plugin with jCarousel and it works! All that is needed is a new jCarousel skin with arrows that looks like the tabs in the tabs plugin. I've not tried it with jCarouselLite yet. On 7/3/07, Ganeshji Marwaha <[EMAIL PROTECTED]> wrote: > > to use jCarouselLite as a menu shoul

[jQuery] Question about selectors

2007-07-03 Thread Danbh
Hello everyone, I'm trying to select the children (ie. rows) of a table, where the table has a certain id. I tried $('table#my_id/tr') but that doesn't find anything. Then, I tried $('table#my_id').children(). That returns this mysterious element. This element contains, for its own children,

[jQuery] Assigning a var to a jquery object?

2007-07-03 Thread [EMAIL PROTECTED]
Example: var jElement = $("#"+element).attr("id"); alert(jElement.attr('id')); This doesn't appear to work like this. Anyone know of the right way, or if there is a way to do this? Also, has anyone considered setting up a discussion forum for jQuery? I'm considering it...

[jQuery] Re: .fadeOut In mutiple elements don't work. why? what's wrong?

2007-07-03 Thread Eric Crull
so, for example, if your code is: hi bye ...table info... Your jquery object $("#btcontrole") only contains one element, so the each() only works on it. If you wanted to have a jquery object that consists of the spans you would use $("#btcontrole span"), or if you wanted the table to be incl

[jQuery] Re: Using jCarouselLite w text, as a menu?

2007-07-03 Thread Kia Niskavaara
Would it be possible to use the tabs to the left and right as arrows? Maby assign a function call to the click events? That would make it look a lot like the Firefox tabs. On 7/3/07, Ganeshji Marwaha <[EMAIL PROTECTED]> wrote: > > I put together a very basic demo page for the jCarouselLite with th

[jQuery] Re: jqDnR + jqModal -- dragging causes jump in IE & Safari

2007-07-03 Thread Brian Cherne
It's hard to read Brice's minimalist (elegant and light) code style... but I suspect the reason it's breaking is on line 27: var f=function(w,t){return parseInt(w.css(t)) || 0}; If w.css returns undefined then your value will be 0 initially. If w.css is a percentage, then it will think 10% is re

[jQuery] Re: Tabs plugin, using iframes

2007-07-03 Thread Klaus Hartl
Kia Niskavaara wrote: On 7/3/07, *Klaus Hartl* <[EMAIL PROTECTED] > wrote: Kia Niskavaara wrote: > I want to load some external data into the content part of the page. > This only works with ajax: > > |$('#container').tabs({ remote: true })

[jQuery] Re: Using jCarouselLite w text, as a menu?

2007-07-03 Thread Ganeshji Marwaha
I put together a very basic demo page for the jCarouselLite with the tabs plugin... With some minor css tweaks, it seems to work pretty neat... As usual IE6 is not playing well, but i am sure this can be solved with some more css tweaks... take a look at http://www.gmarwaha.com/jquery/jcarouselli

[jQuery] Re: .fadeOut In mutiple elements don't work. why? what's wrong?

2007-07-03 Thread Ganeshji Marwaha
this is because, according to HTML spec, more than 1 element cant have the same id attribute. So, when u use $("#some") selector in jquery, it returns only the first one in the document. So, try using a class attribute instead of id. That should solve ur problem. -GTG On 7/3/07, Alexsandro_xpt

[jQuery] slidedown doesn't seem to work with the newest version of jquery

2007-07-03 Thread boltthrower
thanks

[jQuery] Re: Tabs plugin, using iframes

2007-07-03 Thread Kia Niskavaara
On 7/3/07, Klaus Hartl <[EMAIL PROTECTED]> wrote: > > > Kia Niskavaara wrote: > > I want to load some external data into the content part of the page. > > This only works with ajax: > > > > |$('#container').tabs({ remote: true });| > > > > But I want to be able to load external pages, I want to use

[jQuery] Re: Masked Input Plugin RC3

2007-07-03 Thread Eric Crull
Just to let you know, I really like the plugin. It solves a lot of problems I anticipate happening with our website. About the delete key issue. Mostly I noticed it when I entered input, tabbed off and then realized there was an error. When I shift-tabbed back in, the plug-in reverts to the be

[jQuery] Re: Syntax for selecting a form element named 'foo[0]'?

2007-07-03 Thread Dan G. Switzer, II
>Greetings; I have a form on my page that contains two select fields. >They are >setup like this: > > >name="categoryID[0]"> > hello > world > > > foo > bar > > > >I've tried various permutations to be able to grab the values from the >two selects with no >success. Here ar

[jQuery] Re: .change for created select menu

2007-07-03 Thread Ganeshji Marwaha
hmmm... ok, can u post a test page somewhere where i can take a look. that could simplify debugging.. -GTG On 7/3/07, NBoringron <[EMAIL PROTECTED]> wrote: I tried that but it didn't work. On Jul 3, 6:36 am, "Ganeshji Marwaha" <[EMAIL PROTECTED]> wrote: > try calling the $('#tagline2').chang

[jQuery] Re: Syntax for selecting a form element named 'foo[0]'?

2007-07-03 Thread Aaron Heimlich
On 7/3/07, sprak <[EMAIL PROTECTED]> wrote: What magic am I missing to be able to grab the value? $('[EMAIL PROTECTED]"categoryID[0]"]').val(); Notice the quotes around categeoryID[0] -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: .fadeOut In mutiple elements don't work. why? what's wrong?

2007-07-03 Thread Alexsandro_xpt
Hellow??? Somebody help me?

[jQuery] Syntax for selecting a form element named 'foo[0]'?

2007-07-03 Thread sprak
Greetings; I have a form on my page that contains two select fields. They are setup like this: hello world foo bar I've tried various permutations to be able to grab the values from the two selects with no success. Here are some of the statements I have tri

[jQuery] Re: Tabs plugin, using iframes

2007-07-03 Thread Klaus Hartl
Kia Niskavaara wrote: I want to load some external data into the content part of the page. This only works with ajax: |$('#container').tabs({ remote: true });| But I want to be able to load external pages, I want to use an iframe instead. Is this possible? I guess I could use the load even

[jQuery] Re: Problem with WebTrends JS + jQuery in IE 6

2007-07-03 Thread skyeflye
Hey Jack. Thanks for any help you can provide. Here's the default JS code for the WebTrends SmartSource "Data Collector Tag." (They refer to all the code a "tag" even though it's really a series of several HTML tags.) This all appears as the last code inside the of every page on their web site:

[jQuery] Tabs plugin, using iframes

2007-07-03 Thread Kia Niskavaara
I want to load some external data into the content part of the page. This only works with ajax: $('#container').tabs({ remote: true }); But I want to be able to load external pages, I want to use an iframe instead. Is this possible? I guess I could use the load event, and manually set the source

[jQuery] Re: jqDnR + jqModal -- dragging causes jump in IE & Safari

2007-07-03 Thread rolfsf
hmmm... in your case, you're actually using absolute positioning with pixels instead of %, which is what "fixes" the problem for me. Head scratcher... Glen Lipka wrote: > > The picture on the top right of my blog does the exact same thing. > Im very interested to know how to fix.. > > Glen >

[jQuery] Re: jqDnR + jqModal -- dragging causes jump in IE & Safari

2007-07-03 Thread Glen Lipka
The picture on the top right of my blog does the exact same thing. Im very interested to know how to fix.. Glen http://www.commadot.com On 7/3/07, rolfsf <[EMAIL PROTECTED]> wrote: I've posted a stripped-down example page here: http://www.monkeypuzzle.net/testfiles/jquery/jqDnR_drag_bug/

[jQuery] Re: 1.1.3 and Interface

2007-07-03 Thread Jeffrey Kretz
Ah, I missed the release notes, as the page displaying them was down for part of yesterday. Thanks, JK -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Gilles (Webunity) Sent: Monday, July 02, 2007 11:20 PM To: jQuery (English) Subject: [jQuery]

[jQuery] Re: jqDnR + jqModal -- dragging causes jump in IE & Safari

2007-07-03 Thread rolfsf
I've posted a stripped-down example page here: http://www.monkeypuzzle.net/testfiles/jquery/jqDnR_drag_bug/ Firefox works fine. In IE6, IE7, or Safari 2 (mac), the modal window will jump partially off-screen if you try to drag the window. If I set top and left to pixels instead of %, this jump

[jQuery] Re: Problem using .children() + selector in IE6

2007-07-03 Thread Ganeshji Marwaha
i am just wondering here.. did u try to debug and find out what element is getting selected by jquery... are u getting an option element and only a single option element.? -GTG On 7/3/07, benjaah <[EMAIL PROTECTED]> wrote: Thanx Ganeshji I've tried to set the attribute to "selected" instead

[jQuery] .fadeOut In mutiple elements don't work. why? what's wrong?

2007-07-03 Thread Alexsandro_xpt
Hello guys I had 3 HTML elements within some ID called "btcontrole", that was: 2 SPAN and 1 TABLE but while run $("#btcontrole").each(function(){$ (this).fadeOut("normal");}); only just first SPAN work perfect. =/ What happen? Thanks All

[jQuery] 403 error in Firefox fixed, but not sure why it worked

2007-07-03 Thread brianwilkins
I added the following to one of my files to hide and show a group of thumbnails and it gave me a 403 error in Firefox only: $(document).ready(function(){ $('div.more').hide(); $('br.clearbothMore').hide(); $('h2.contract').hide(); $('h2.expand').click(function()

[jQuery] Re: How to find elements with an exact text content?

2007-07-03 Thread Nicolas Hoizey
> As far as I know, .textContent only works in Firefox. The IE > equivalent is .innerText. > jQuery normalizes this with its .text() method. Thanks a lot! -Nicolas -- Nicolas "Brush" HOIZEY Clever Age : http://www.clever-age.com/ Gastero Prod : http://www.gasteroprod.com/ Photos : http://

[jQuery] Re: Tabs or mini tabs?

2007-07-03 Thread Sean Catchpole
On 7/3/07, Bruce <[EMAIL PROTECTED]> wrote: omg, a demo as an xml file? Makes it unusable for the majority I would think..., me for sure, oh well That's why I included a view source button with every example, however I understand your concern and I will gladly change the page to html if others

[jQuery] Re: Loading Klaus Hartl's Plugin? Tabs...

2007-07-03 Thread Ganeshji Marwaha
did u include the tabs plugin js file as well... before u call $("#container").tabls -GTG On 7/3/07, Jim Newfer <[EMAIL PROTECTED]> wrote: On Jul 3, 2:26 am, Klaus Hartl <[EMAIL PROTECTED]> wrote: > Ganeshji Marwaha wrote: > > The tabs plugin expects the html markup in a certain structure.

[jQuery] Re: jQuery 1.1.3 and easing plugin

2007-07-03 Thread Bolos
On 2 Lug, 19:32, Karl Swedberg <[EMAIL PROTECTED]> wrote: > Or, grab the latest copy of George's easing plugin, which plays > nicely with 1.1.3 now: work perfectly. Thanks! -Bolos

[jQuery] Re: Using jCarouselLite w text, as a menu?

2007-07-03 Thread Ganeshji Marwaha
to use jCarouselLite as a menu should not be a problem. You need not use images as its items. Any HTML markup will work. Theoritically, tabs plugin should work fine with jCarouselLite. So, try it and let us know how it goes. -GTG On 7/3/07, John Farrar <[EMAIL PROTECTED]> wrote: Now that is

[jQuery] Re: Need help with JQuery + Prototype integration

2007-07-03 Thread Ganeshji Marwaha
wow... keep us in the loop if u find a way out. -GTG On 7/3/07, sprak <[EMAIL PROTECTED]> wrote: Hmm... after further debugging it appears that the issue is with Prototype extending the Array prototype. Line 1127 in jquery-latest.js reads: tmp.push( a ); The push is failing because the

[jQuery] Re: jCarouselLite 0.3.0 released

2007-07-03 Thread Ganeshji Marwaha
LOL. Sure no problem... Will try to get around to it this week... Thanks for the compliments on the demo page... -GTG On 7/3/07, GianCarlo Mingati <[EMAIL PROTECTED]> wrote: Ganeshji, very nice demo page! You know i'll steal the code for the "mouse gestures" (mouse x-scroll) as soon it will

[jQuery] Re: Problem using .children() + selector in IE6

2007-07-03 Thread benjaah
Thanx Ganeshji I've tried to set the attribute to "selected" instead of true as you proposed, but it doesn't work any better. The javascript error is: "Could not set the selected property" Ben On Jul 2, 7:33 pm, "Ganeshji Marwaha" <[EMAIL PROTECTED]> wrote: > i am not sure if what i am telling i

[jQuery] Re: Field Plug-in Update: Added $("form").formHash() method....

2007-07-03 Thread Web Specialist
Congratulations! 2007/7/3, Andy Matthews <[EMAIL PROTECTED]>: Sounds awesome Dan!! Very promising. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dan G. Switzer, II Sent: Tuesday, July 03, 2007 10:51 AM To: jquery-en@googlegroups.com Subject

[jQuery] Re: Field Plug-in Update: Added $("form").formHash() method....

2007-07-03 Thread Andy Matthews
Sounds awesome Dan!! Very promising. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dan G. Switzer, II Sent: Tuesday, July 03, 2007 10:51 AM To: jquery-en@googlegroups.com Subject: [jQuery] Field Plug-in Update: Added $("form").formHash() metho

[jQuery] Field Plug-in Update: Added $("form").formHash() method....

2007-07-03 Thread Dan G. Switzer, II
I've updated my Field Plug-in with a new method called formHash(): http://jquery.com/plugins/project/field The formHash() method allows you to easily grab all the values in your form as a hash map/structure or you can set the fields in your form based upon a hash map/structure of values. The fo

[jQuery] Re: Masked Input Plugin RC3

2007-07-03 Thread Josh Bush
Once I get this feature set stable, then I'll start adding more features. Poor Jörn has been waiting on some features he requested at Beta 1 or so. I really don't know what to do about the file naming. It's still a masked input plugin, I just changed the method calls to a verb to show the action

[jQuery] Re: ReBinding

2007-07-03 Thread DXCJames
That seems to be working pretty good!! Thanks a TON!! On Jul 3, 9:32 am, "Brandon Aaron" <[EMAIL PROTECTED]> wrote: > If you have updated to jQuery 1.1.3 you can use the new behavior plugin. It > attaches events based on the selector even after the DOM has been updated. > > http://jquery.com/plug

[jQuery] Re: Form submit problem when dealing with more than 1 form

2007-07-03 Thread Catalin
John, I'm developing a framework here and everything went well `till I started asking myself. Does it work if I have 2 forms present on one page? And all came tumbling down since, the submit event takes the second set of options everytime i click the form submit button. Shouldn't the first optio

[jQuery] Re: How to find elements with an exact text content?

2007-07-03 Thread Karl Swedberg
Hi Nicolas, As far as I know, .textContent only works in Firefox. The IE equivalent is .innerText. jQuery normalizes this with its .text() method. btw, .text() can also be used as a "setter": $(someElement).text ('This is some text'); --Karl _ Karl Swedberg www.englishrul

[jQuery] Re: OT: iPhone Interface in JavaScript

2007-07-03 Thread Brandon Aaron
And if you use the minified version and gzip it it is only 11kb! Go! Go! HTTP Compression! -- Brandon Aaron On 7/3/07, Rey Bango <[EMAIL PROTECTED]> wrote: Some of you may have seen this but in case you missed it, David Cann created a cool littel iPhone interface that can help you determ

[jQuery] thickbox onload

2007-07-03 Thread Anthony Leboeuf(Worcester Wide Web)
Hello, Is it possible to make thickbox onload instead of clicking a link? I need to load up a thickbox for login information. Thanks -Tony

[jQuery] Re: Loading Klaus Hartl's Plugin? Tabs...

2007-07-03 Thread R. Rajesh Jeba Anbiah
On Jul 3, 2:26 pm, Klaus Hartl <[EMAIL PROTECTED]> wrote: > Maybe the id ("container"), e.g. the selector in use just isn't correct. > Make sure that it actually matches the element that contains the markup > required for tabs. Sorry to jump in here. Just a quick suggestion on tabs: you co

[jQuery] OT: iPhone Interface in JavaScript

2007-07-03 Thread Rey Bango
Some of you may have seen this but in case you missed it, David Cann created a cool littel iPhone interface that can help you determine what your app would look like using Apple's wonder phone. You can check it out here: http://davidcann.com/iphone/ I got the link from an site listed on Aja

[jQuery] Re: Loading Klaus Hartl's Plugin? Tabs...

2007-07-03 Thread Klaus Hartl
Jim Newfer wrote: I should also add that I am loading in the header in this order, the jquery library js file, the niceHead file I have set up that contains this block of code $(document).ready(function() { $('#container').tabs(); }); And then I finally include the css file in my header. Hm

[jQuery] Re: Loading Klaus Hartl's Plugin? Tabs...

2007-07-03 Thread Klaus Hartl
Jim Newfer wrote: Hi everyone, I am back, I apologize for such a basic Question. Yep, I have the tabs png, and the loading pngs loading correclty they are displaying. Here is the markup I am using, I am thinking it is a problem here. All of my content is displaying for all the tabs at once. Any

[jQuery] Re: How to find elements with an exact text content?

2007-07-03 Thread Nicolas Hoizey
>> You can try the powerful .filter() method with an anonymous >> function as its argument: >> >> $('someElement').filter(function() { >> return $(this).text() == 'Some text'; >> }); > > I will try this, thanks! It works well! Do you think it is usefull, for performance, to first filter with

[jQuery] Re: fadeIn w/jQuery 1.1.3?

2007-07-03 Thread Joel Birch
On 04/07/2007, at 12:24 AM, Priest, James (NIH/NIEHS) [C] wrote: $('#warning').css('display', 'none').fadeIn(1000); This seems to work as well... And in the previous version (1.1.2) it worked without first hiding things (?) Jim This affected the Superfish plugin too. The CSS to hide the subm

[jQuery] Re: ReBinding

2007-07-03 Thread Brandon Aaron
If you have updated to jQuery 1.1.3 you can use the new behavior plugin. It attaches events based on the selector even after the DOM has been updated. http://jquery.com/plugins/project/behavior/ -- Brandon Aaron On 7/3/07, DXCJames <[EMAIL PROTECTED]> wrote: I am building a app that has a lo

[jQuery] Re: ReBinding

2007-07-03 Thread Andy Matthews
In jQuery 1.1.3, there's an automatic rebinding of events using the event model. You can read about it on the release page. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of DXCJames Sent: Tuesday, July 03, 2007 9:22 AM To: jQuery (English) Subjec

[jQuery] Re: ReBinding

2007-07-03 Thread Scott Sauyet
DXCJames wrote: I am building a app that has a lot of $.posts so it requires me to rebind alot.. for some reason i have an infinite loop in IE but not FF and i cant figure out how it happened.. anyway.. do you think instead of binding functions to the locations, just using onclick="" and just ha

[jQuery] ReBinding

2007-07-03 Thread DXCJames
I am building a app that has a lot of $.posts so it requires me to rebind alot.. for some reason i have an infinite loop in IE but not FF and i cant figure out how it happened.. anyway.. do you think instead of binding functions to the locations, just using onclick="" and just having functions for

[jQuery] Re: How to find elements with an exact text content?

2007-07-03 Thread Nicolas Hoizey
Hi Karl, > You can try the powerful .filter() method with an anonymous > function as its argument: > > $('someElement').filter(function() { > return $(this).text() == 'Some text'; > }); I will try this, thanks! What is the difference between .text() and .textContent? -Nicolas -- Nicolas

[jQuery] Re: fadeIn w/jQuery 1.1.3?

2007-07-03 Thread Priest, James (NIH/NIEHS) [C]
> -Original Message- > From: Brandon Aaron [mailto:[EMAIL PROTECTED] > Sent: Tuesday, July 03, 2007 10:06 AM > To: jquery-en@googlegroups.com > Subject: [jQuery] Re: fadeIn w/jQuery 1.1.3? > > The fade in message is not hidden. Try: > $('#warning').css('opacity', 0).fadeIn(2000); This o

[jQuery] Re: Problem with WebTrends JS + jQuery in IE 6

2007-07-03 Thread jaack_rouselete
Hey, Jake Cud u send me a sample complete SmartSourceDataCollectorScript code.jus need to luk-in de porbs being faced by ppl over here... rgds. Jack On Jun 18, 8:41 pm, "Jake McGraw" <[EMAIL PROTECTED]> wrote: > anyone? > > On 6/15/07, Jake McGraw <[EMAIL PROTECTED]> wrote: > > > > > This i

[jQuery] Re: Loading Klaus Hartl's Plugin? Tabs...

2007-07-03 Thread Jim Newfer
On Jul 3, 2:26 am, Klaus Hartl <[EMAIL PROTECTED]> wrote: > Ganeshji Marwaha wrote: > > The tabs plugin expects the html markup in a certain structure... > > Recently the plugin has more flexibility towards the markup structure, > > nevertheless, you need to set that up correctly in order for it

[jQuery] Re: Loading Klaus Hartl's Plugin? Tabs...

2007-07-03 Thread Jim Newfer
On Jul 3, 2:26 am, Klaus Hartl <[EMAIL PROTECTED]> wrote: > Ganeshji Marwaha wrote: > > The tabs plugin expects the html markup in a certain structure... > > Recently the plugin has more flexibility towards the markup structure, > > nevertheless, you need to set that up correctly in order for it

[jQuery] Re: Need help with JQuery + Prototype integration

2007-07-03 Thread sprak
Hmm... after further debugging it appears that the issue is with Prototype extending the Array prototype. Line 1127 in jquery-latest.js reads: tmp.push( a ); The push is failing because the array tmp is overloaded with Prototype's functions, etc. Can't see any way around this at the moment

[jQuery] thickbox and other plugins z-index

2007-07-03 Thread amircx
hey, is im having a problem, im using tickbox to show diffrent page (ajax remote file), when im trying to use inside the page that ive got inside the thickbox, some plugins like jquery-calander or whatever its hides me the items so once i click on "show dates" ... is there a way to bring to f

[jQuery] Re: fadeIn w/jQuery 1.1.3?

2007-07-03 Thread Brandon Aaron
The fade in message is not hidden. Try: $('#warning').css('opacity', 0).fadeIn(2000); or $('#warning').fadeOut(2000).fadeIn(2000); -- Brandon Aaron On 7/3/07, Priest, James (NIH/NIEHS) [C] <[EMAIL PROTECTED]> wrote: > -Original Message- > From: John Resig [mailto:[EMAIL PROTECTED]

[jQuery] Re: How to find elements with an exact text content?

2007-07-03 Thread Karl Swedberg
Hi there Nicolas, You can try the powerful .filter() method with an anonymous function as its argument: $('someElement').filter(function() { return $(this).text() == 'Some text'; }); I'm pretty sure that will get what you're looking for. --Karl _ Karl Swedberg www.english

[jQuery] Re: fadeIn w/jQuery 1.1.3?

2007-07-03 Thread Mike Alsup
Brandon's fix corrected the problem for my test page: http://malsup.com/jquery/test/test.html Mike On 7/3/07, Priest, James (NIH/NIEHS) [C] <[EMAIL PROTECTED]> wrote: > -Original Message- > From: John Resig [mailto:[EMAIL PROTECTED] > Sent: Monday, July 02, 2007 3:17 PM > > Brandon

[jQuery] Re: Using jCarouselLite w text, as a menu?

2007-07-03 Thread John Farrar
Now that is something I would like to see... tabsCarousel would be great! On 7/3/07, Kia Niskavaara <[EMAIL PROTECTED]> wrote: Or is it possible to use the tabs plugin together with the jCarouselLite/jCarousel plugin? Kia Niskavaara wrote: > I have a long horizontal list, that I use as a men

[jQuery] 'Type mismatch' trying to append to XML node

2007-07-03 Thread [EMAIL PROTECTED]
Hi... First post, so be gentle... I am trying to append a new entry into an XML document. This works fine in FF but fails with a 'Type mismatch' error (line 170) in IE. By using the .toXML() plugin, the output is 'xx' I have tried in 1.1.3 & 1.1.2, both give the same error in IE. function

[jQuery] Re: Using jCarouselLite w text, as a menu?

2007-07-03 Thread Kia Niskavaara
Or is it possible to use the tabs plugin together with the jCarouselLite/jCarousel plugin? Kia Niskavaara wrote: > I have a long horizontal list, that I use as a menu, that is too large. Is it > possible to use > jCarouselLite to solve this problem? > > In the install page[1] I see this: >

[jQuery] Re: i want to display the pictures one by one

2007-07-03 Thread Jan Sorgalla
Hi, ioutz wrote: > > i'm using the simple static way, but i've changed from the css the width > of the container to match the width of my pics. the problem is that it > shows me first pic, then the 4th, etc... is skipping 3 pics. i have > changed the scroll to 1, but no effect. what i have

[jQuery] Re: WYSIWYG Editor in Jquery

2007-07-03 Thread MichaL Sanger
Sure, http://wiki.fckeditor.net/Developer's_Guide/Configuration/Toolbar MichaL 2007/7/3, G[N]Urpreet Singh <[EMAIL PROTECTED]>: Thanks guys, But I used WYMEDITOR (http://www.wymeditor.org/en/) for this project. Making it work was a pain primarily because of sparse documentation. I'l use FCK i

[jQuery] Re: get a form value after a post and page reloaded

2007-07-03 Thread Scott Sauyet
Jacques Jocelyn wrote: Thanks Scott for your insight, It worked fine. Great. I have to agree with your opinion on JS not working, but here I don't think I will have a choice, the entire apps is built on Ajax... Up to you, of course, but I always try to provide the necessary functionality

[jQuery] Re: fadeIn w/jQuery 1.1.3?

2007-07-03 Thread Priest, James (NIH/NIEHS) [C]
> -Original Message- > From: John Resig [mailto:[EMAIL PROTECTED] > Sent: Monday, July 02, 2007 3:17 PM > > Brandon just committed a fix for this to SVN. If you could try it, and > let us know if it works for you, that'd be good (if you can). > http://code.google.com/p/jquery Sorry for

[jQuery] Re: Form submit problem when dealing with more than 1 form

2007-07-03 Thread John Farrar
Carlin, It seems like a wrong approach to submit more than one form. By virtue a form is sort of a "domain" of information. If you have seperate forms they likely should be submitted seperately. There are ways to combine information so the form is split up into pages or even "tabs" for example of

  1   2   >