[jQuery] Re: close clueTip by selecting element in clueTip box

2007-11-26 Thread Tim
Karl, $('#cluetip').hide(); this was all i needed. thanks a ton. Tim On Nov 25, 4:28 pm, Karl Swedberg [EMAIL PROTECTED] wrote: You could try something like this: $('someListItem').click(function() { $('#cluetip').hide().removeClass().children().empty(); }); Replace someListItem

[jQuery] Re: Bug in jQuery selector or am I just not understanding?

2007-11-26 Thread Mark Lacas
All those divs are necessary for the type of system I'm building. Can't talk about it yet, but when we release I can explain why. Solved the problem by using the in between my selectors. I adore jQuery and love becoming smarter about jQuery every day from this list. Amazing resource. ml

[jQuery] Re: reset toggle

2007-11-26 Thread befidled
It is a FAQ page but handled a little differently: http://www.safaribydesign.com/faq/ The way I've got it set up right now works ok, but once a visitor starts clicking they can't turn the answers off unless they click the FAQ button in the main menu. That may not be much of a problem but I'd

[jQuery] Can $(document).ready() be put into a separate JS file?

2007-11-26 Thread Stephen
Hi, I have read a few tutorial docs, and they all state that $ (document).ready() be placed in a script tag on the current document, like so: head titleTest/title script type=text/javascript src=js/jquery.js/script script type=text/javascript

[jQuery] Re: Making jQuery turn up on time (document.ready and firing too early)

2007-11-26 Thread Klaus Hartl
On 26 Nov., 01:53, Brett [EMAIL PROTECTED] wrote: So I guess what we should do is, try and get a list of possible ways to run jquery ( I know of $(function(){ in a js block of code, document.ready , and a very buggy window.onLoad() - Even if it will be fixed in upcoming versions hopefully,

[jQuery] Re: Concatenation

2007-11-26 Thread Marc Jansen
Hi Llaurick, not sure if I understand you correct, but isn't array.join() what you search for? var a = ['foo', 'bar', 'humpty', 'dumpty']; var s = a.join(','); // s is now 'foo,bar,humpty,dumpty' -- Marc Llaurick schrieb: I would like to know if there is a function (or any other way)

[jQuery] Re: jeditable - issue dynamically resetting submitdata

2007-11-26 Thread Mika Tuupola
On Nov 25, 2007, at 9:54 PM, spherop wrote: basically, i need to dynamically update the submitdata attribute of various editable text inputs according to events happening on the client. specifically, the user clicks on different thumbnails, and then can edit in place different properties

[jQuery] Re: reset toggle

2007-11-26 Thread Wizzud
You could try something like (untested)... $('div.textcontainer_questions li a').click(function(){ var num = $(this).attr('class').match(/question(\d+)/)[1] , ans = $('div.answer'+num); ans.siblings(':visible:has(div)').fadeOut(); ans[ ans.is(':visible') ? 'fadeOut' : 'fadeIn'

[jQuery] OT jQuery plugins user account password

2007-11-26 Thread GianCarlo Mingati
Hi, sorry for the OT. I can't remember my password for the plugin repository. The request new password does not work. Any clue on how to retrieve the password?

[jQuery] jQuery and WEB 2.0 architecture (SOFEA/SOUI) [crosspost from dev list]

2007-11-26 Thread ClaudeFr
Hello everybody, I'm a jQuery (very satisfied) user :-) I want to know what do you think of this new (I know that the acronym it's the only new thing) Web 2.0 architecture, of which I read first here: http://raibledesigns.com/rd/entry/re_life_above_the_service (another post

[jQuery] Re: jQuery and WEB 2.0 architecture (SOFEA/SOUI) [crosspost from dev list]

2007-11-26 Thread ClaudeFr
On Nov 26, 1:19 pm, ClaudeFr [EMAIL PROTECTED] wrote: I think that there's a need of js frameworks to support this architecture, specifically, a js framework to implement a MVC pattern client sidehttp://www.infoq.com/news/2007/11/soui-death-of-mvc2 btw, it seems that I'm not the first one to

[jQuery] Re: Can $(document).ready() be put into a separate JS file?

2007-11-26 Thread Polskaya
I don't know why you have this error. This works fine for me: In the header of my index-page: script type=text/javascript src=jscript.js/script in the jscript.js: $(document).ready(function(){ //--jquery code goes here }); On Nov 26, 5:22 am, Stephen [EMAIL PROTECTED] wrote: Hi, I have

[jQuery] Re: clueTip: opening one tip closes another tip

2007-11-26 Thread PJ
Nothing better than starting Monday morning with the solution to an issue!! Many, many thanks Karl. Works perfectly with IE6 and FF1.5. I shall do some testing later with other browsers. The changes really make the interface much more intuative. I just need to add some bespoke onfocus functions

[jQuery] Re: Off-line documentation

2007-11-26 Thread Adwin Wijaya
jquery 1.2 source should have the documentation and examples in the source, but the developers take the precious one away .. (the previous version of jquery has nice and easy to follow documentation and examples, even if we have to read the source) why in jquery 1.2 they are removed ? On Nov

[jQuery] id with : colon

2007-11-26 Thread Maciej
Hello, i have question why this code dosn't work. html xmlns=http://www.w3.org/1999/xhtml; head script type=text/javascript src=jquery.js/script /head script function make(arg){ $(#+arg).text(New text); } /script body div id=one:idensomething/div br/ a href=#

[jQuery] NaNpx problem in jQuery 1.2.1

2007-11-26 Thread [EMAIL PROTECTED]
Hi all. I've built an auto search plugin (or live search to give it another name) using jQuery 1.2.1 which does an ajax call as letters are typed into an input box. It works flawlessly in firefox, opera and safari, but in IE7 and IE6 jQuery fails at line 906: if ( value

[jQuery] Re: IE: load()-related memory leak?

2007-11-26 Thread [EMAIL PROTECTED]
Hi, i can confirm the problem with Firefox(1.5) too! Best regards, Roland Braband On 22 Nov., 11:35, Sagari [EMAIL PROTECTED] wrote: Greetings, I am using jQuery in AJAX-based Web-application that uses load() to update contents of (a part of) a Web page, through sequences like

[jQuery] Re: id with : colon

2007-11-26 Thread Karl Rudd
Have a read of this: http://docs.jquery.com/Frequently_Asked_Questions#How_do_I_select_an_element_that_has_weird_characters_in_its_ID.3F Karl Rudd On Nov 26, 2007 8:47 PM, Maciej [EMAIL PROTECTED] wrote: Hello, i have question why this code dosn't work. html

[jQuery] Re: OT jQuery plugins user account password

2007-11-26 Thread GianCarlo Mingati
and now? how do i add new plugins GC On Nov 26, 12:48 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I haven't forgotten my password but it won't allow me to login. If i try an request another password nothing happens. On Nov 26, 6:04 am, GianCarlo Mingati [EMAIL PROTECTED] wrote:

[jQuery] Re: OT jQuery plugins user account password

2007-11-26 Thread Flesler
Me too, I'm not sure, but I might have changed my password a week ago. In that case, I didn't get the confirmation email... The thing is, I can't log in.. I hope this gets solved soon :) Ariel Flesler On 26 nov, 10:19, GianCarlo Mingati [EMAIL PROTECTED] wrote: and now? how do i add new

[jQuery] Re: jQuery and WEB 2.0 architecture (SOFEA/SOUI) [crosspost from dev list]

2007-11-26 Thread Rick Faircloth
Hi, Claude... I'm a relative new-comer to Javascript and jQuery in particular. But, I think that jQuery has outstand capability to bring Web 2.0 functionality to websites, even in a framework approach. I can't speak to frameworks very much, because I've never used one in any language...at least

[jQuery] Which child am I?

2007-11-26 Thread badtant
I have the following html: table thead tr thcol a/th thcol b/th thcol c/th /tr /thead tbody tr tdaaa/td tdbbb/td tdccc/td /tr /tbody /table When the user hovers the th-element I have a function. I want that function to return which of the columns that has been hovered. Let me explain... when

[jQuery] Re: Which child am I?

2007-11-26 Thread Glen Lipka
You could dynamically add a psuedo attribute like col with an each function after the page loads. Other than than, I would experiment with colgroup and see if it fires which col you are in. Sorry, no time for a demo. :( Hope this helps a little. Glen On Nov 26, 2007 7:35 AM, badtant [EMAIL

[jQuery] Re: Can $(document).ready() be put into a separate JS file?

2007-11-26 Thread Stephen
Hi, I'm using Firefox 2.0.0.9. IE 6 exhibits the same problem also. I'm totally stumped. --Stephen On Nov 26, 5:08 am, Polskaya [EMAIL PROTECTED] wrote: I don't know why you have this error. This works fine for me: In the header of my index-page: script type=text/javascript

[jQuery] Best way to attach settings to a bunch of HTML

2007-11-26 Thread jonhobbs
Just a quick question hopefully. What's the best way of storing settings as part of a chunk of html ? Let me give an example of a photo gallery with lots of photos on the page with the following HTML for each one... div class=Photo div class=TitleWalking in the park/div img

[jQuery] Re: OT jQuery plugins user account password

2007-11-26 Thread ark.kuciak
try to look inside your spam folder on gmail... if gmail is what you are using -ark - Original Message - From: GianCarlo Mingati [EMAIL PROTECTED] To: jQuery (English) jquery-en@googlegroups.com Sent: Monday, November 26, 2007 8:19 AM Subject: [jQuery] Re: OT jQuery plugins user account

[jQuery] Re: Which child am I?

2007-11-26 Thread Andrea Varnier
On 11/26/07, badtant [EMAIL PROTECTED] wrote: When the user hovers the th-element I have a function. I want that function to return which of the columns that has been hovered. Something like this? td class=col_a onMouseOver=alert(this.className);aaa/td

[jQuery] Re: OT jQuery plugins user account password

2007-11-26 Thread GianCarlo Mingati
i'm not using gmail as the email to receive the new pass ;-) On Nov 26, 2:21 pm, [EMAIL PROTECTED] wrote: try to look inside your spam folder on gmail... if gmail is what you are using -ark - Original Message - From: GianCarlo Mingati [EMAIL PROTECTED] To: jQuery (English)

[jQuery] Re: Which child am I?

2007-11-26 Thread badtant
Adding a psuedo attribute like col with an each function would work. I was hoping there would be some smart jquery-function for this. Keep suggesting =) On Nov 26, 4:46 pm, Glen Lipka [EMAIL PROTECTED] wrote: You could dynamically add a psuedo attribute like col with an each function after the

[jQuery] Re: OT jQuery plugins user account password

2007-11-26 Thread Flesler
I do have, but I clean the spam list daily. Ariel Flesler On 26 nov, 13:18, GianCarlo Mingati [EMAIL PROTECTED] wrote: i'm not using gmail as the email to receive the new pass ;-) On Nov 26, 2:21 pm, [EMAIL PROTECTED] wrote: try to look inside your spam folder on gmail... if gmail is

[jQuery] Re: OT jQuery plugins user account password

2007-11-26 Thread GianCarlo Mingati
The problem is when you ask for a new password the mail is not sent at all Ark, if you can try logging out and login again. see if you can login GC On Nov 26, 5:20 pm, Flesler [EMAIL PROTECTED] wrote: I do have, but I clean the spam list daily. - Mostrar texto de la cita -

[jQuery] Re: Can $(document).ready() be put into a separate JS file?

2007-11-26 Thread tlphipps
You need to make sure that jquery.js is included BEFORE your external .js file that attempts to use jquery code. On Nov 26, 7:55 am, Stephen [EMAIL PROTECTED] wrote: Hi, I'm using Firefox 2.0.0.9. IE 6 exhibits the same problem also. I'm totally stumped. --Stephen On Nov 26, 5:08 am,

[jQuery] HELP: Pause Play

2007-11-26 Thread [EMAIL PROTECTED]
I put together the following script, inspired by Innerfade (http://medienfreunde.com/lab/innerfade/), which sequentially rotates the background image of a specified div. Does anyone know how create a button that pause/play it? Thanks style #Image { background-image:

[jQuery] Re: jeditable - issue dynamically resetting submitdata

2007-11-26 Thread spherop
Ahh great - that solved it completely :) thx so much!! Mika Tuupola wrote: On Nov 25, 2007, at 9:54 PM, spherop wrote: basically, i need to dynamically update the submitdata attribute of various editable text inputs according to events happening on the client. specifically, the

[jQuery] Re: For Brazilians jQuery Developers

2007-11-26 Thread alexanmtz
É cara, não conhecia o validate, muito bom... ele é ótimo, mas descobri que ele ainda peca em validação servidor em conjunto com cliente. Então o ideal é usar o form para servidor e o validate para cliente... Mas pelo que vi na versão nova já virá o suporte remoto... On Nov 1, 3:44 pm, Web

[jQuery] Re: Which child am I?

2007-11-26 Thread Jonathan Sharp
*Untested* Something similar to: var index = $(this).parent().find(' td').index(this); -js On 11/26/07, badtant [EMAIL PROTECTED] wrote: Adding a psuedo attribute like col with an each function would work. I was hoping there would be some smart jquery-function for this. Keep suggesting

[jQuery] Image Rotator Plugin?

2007-11-26 Thread Spencer
I'm looking for a jQuery based image rotator plugin, does anyone know of one that is light weight? It really only needs to be able to rotate a group of images as a set interval with basic fadein and fadeout transitions. If it could rotate text along with the image that would be great, but right

[jQuery] Re: problem setting up idTabs on ajax success callback in IE6 sp2

2007-11-26 Thread Sean Catchpole
Do you have a demo page or some sample code? ~Sean On Nov 25, 2007 8:17 AM, ogurec [EMAIL PROTECTED] wrote: Hi, when i try to initialize idTabs on successful ajax request it fails in IE6, but works in FF2, Opera 9 and Safari for Windows. Anyone else had such problem? Is there a solution?

[jQuery] Re: Image Rotator Plugin?

2007-11-26 Thread Andy Matthews
By rotate, do you mean flipping through a group of images, displaying one at a time? Or do you mean actually rotating the image in degrees so that you could flip it upside down? If you're just looking to flip through a group of images, then I'd look no further than the Cycle plugin from Mike

[jQuery] Jquery call strips away script tags

2007-11-26 Thread RR_QQ
Hello! have a jquery ajax call that returns some HTML that has javascript code in it but it seems all the javascript is being stripped away. I read somewhere that that is the way the jquery acts. Is there anyway around this? I posted about the same topic last week but no one replied. HELP!

[jQuery] Re: Which child am I?

2007-11-26 Thread Glen Lipka
Getting the row is easier. :) There is a rowIndex attribute. http://commadot.com/jquery/rowindex.php Nuts, I am too late. Question answered. I whipped up a demo anyway. http://commadot.com/jquery/colIndex.php Fun question. Glen On Nov 26, 2007 8:10 AM, jonhobbs [EMAIL PROTECTED] wrote: I

[jQuery] Re: Best way to attach settings to a bunch of HTML

2007-11-26 Thread Wizzud
Can you not simply add another class to the container div (or the image)? eg... div class=Photo HasVoted div class=TitleWalking in the park/div img src=photos/walkinginthepark.jpg / div class=RatingAverage Rating:b6/10/b/div /div On Nov 26, 2:53 pm, jonhobbs [EMAIL PROTECTED]

[jQuery] Re: Best way to attach settings to a bunch of HTML

2007-11-26 Thread Glen Lipka
I use psuedo attributes all the time. As long as you use them properly (google expandos) they are safe. But then your page won't validate. You could also use XML, I think. div class=Photo div class=TitleWalking in the park/div img src=photos/walkinginthepark.jpg / div

[jQuery] Re: Getting the index of a cell in a row.

2007-11-26 Thread Wizzud
Assuming you a single checkbox in each th cell... var thboxes = $('.Grid thead th input:checkbox'); thboxes.click(function(){ var colNum = thboxes.index(this) + 1; // then your stuff... $(.Grid tbody tr td:nth-child( + colNum + )input:checkbox).each(function() {

[jQuery] Re: fadeout a div after a few seconds

2007-11-26 Thread Wizzud
Try creating a named function for the success callback...? function fadeOutResult(response){ setTimeout(function(){ $('#pdresult div').fadeOut('slow'); }, 2000); } var pdoptions = { target: '#pdresult', success: fadeOutResponse }; On Nov 24, 2:18 pm, guix69 [EMAIL PROTECTED] wrote: Thank you

[jQuery] Re: Jquery call strips away script tags

2007-11-26 Thread John Resig
If you inject the string into the document (which both load and append do) the scripts will be executed and then removed. Is there any particular reason why you want the script elements? --John On Nov 26, 2007 12:49 PM, RR_QQ [EMAIL PROTECTED] wrote: Hello! have a jquery ajax call that

[jQuery] Re: Getting the index of a cell in a row.

2007-11-26 Thread Glen Lipka
This is similar to another post. Couple of demos: http://www.commadot.com/jquery/rowindex.php http://www.commadot.com/jquery/colIndex.php Glen On Nov 26, 2007 10:20 AM, Wizzud [EMAIL PROTECTED] wrote: Assuming you a single checkbox in each th cell... var thboxes = $('.Grid thead th

[jQuery] Re: Getting the index of a cell in a row.

2007-11-26 Thread Karl Swedberg
Hi Jon, Here you go: $(document).ready(function() { $('.Grid th').each(function(column) { column ++; $('input:checkbox', this).click(function() { $('.Grid tbody tr td:nth-child(' + column + ') input:checkbox').attr({checked: $(this).is(':checked') ? 'checked' : ''});

[jQuery] Re: Image Rotator Plugin?

2007-11-26 Thread Spencer
Flipping through images is exactly what I need. The Cycle plugin appears to be what I'm looking for. Thanks. On Nov 26, 9:43 am, Andy Matthews [EMAIL PROTECTED] wrote: By rotate, do you mean flipping through a group of images, displaying one at a time? Or do you mean actually rotating the

[jQuery] Re: Image Rotator Plugin?

2007-11-26 Thread Andy Matthews
My pleasure...but make sure to thank Mike too, he's on this list. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Spencer Sent: Monday, November 26, 2007 1:57 PM To: jQuery (English) Subject: [jQuery] Re: Image Rotator Plugin? Flipping

[jQuery] Re: clueTip: opening one tip closes another tip

2007-11-26 Thread Karl Swedberg
Hi PJ, Glad you're happy with the fix. :-) Someone else (John Shapiro?) just requested adding focus as an available value for the activation option and provided a patch. So, I dropped it in. It seems like a reasonable thing to want to have. You can grab it from the same SVN link until I

[jQuery] Re: Off-line documentation

2007-11-26 Thread Jörn Zaefferer
Adwin Wijaya schrieb: jquery 1.2 source should have the documentation and examples in the source, but the developers take the precious one away .. (the previous version of jquery has nice and easy to follow documentation and examples, even if we have to read the source) why in jquery 1.2 they

[jQuery] Re: Jquery call strips away script tags

2007-11-26 Thread Ramon Quiusky
Yes there is...I'm using the linked select jquery plugin that returns javascript/jquery code but it gets stripped away! Thanks! -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of John Resig Sent: Monday, November 26, 2007 10:57 AM To:

[jQuery] expand iframe height to match the height of dynamic content

2007-11-26 Thread cfdvlpr
Is there a good jQuery solution to this?

[jQuery] autocomplete new dependency

2007-11-26 Thread Shelane
I downloaded the latest from the repository today and found I was get an error of list.scrollTop not a function. I saw something about a dependency on the dimensions plugin. So I added that to the scripts loaded before the autocomplete. I was then getting a strange issue on the display of the

[jQuery] Re: OT jQuery plugins user account password

2007-11-26 Thread ark.kuciak
there seems to be a problem, when trying to change the password I keep getting an error message, I guess we have to wait for the site to sort it out -ark - Original Message - From: GianCarlo Mingati [EMAIL PROTECTED] To: jQuery (English) jquery-en@googlegroups.com Sent: Monday,

[jQuery] Re: NaNpx problem in jQuery 1.2.1

2007-11-26 Thread [EMAIL PROTECTED]
Thanks John, will do. On Nov 26, 4:27 pm, John Resig [EMAIL PROTECTED] wrote: You should build a simple reproducible demo and post it to:http://dev.jquery.com/ Which is where jQuery bugs should be sent. --John On Nov 26, 2007 7:29 AM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi

[jQuery] Re: OT jQuery plugins user account password

2007-11-26 Thread ark.kuciak
I actually didn't receive the activation email originally, then a few days later I tried changing the password, didn't receive that email either, I found them both in spam folder on gmail... so now if I try it, I will receive it since in gmail I marked them as not spam perhaps there is an

[jQuery] Re: Getting the index of a cell in a row.

2007-11-26 Thread jonhobbs
Thanks guys, I have tried all the suggestions on here and have tried to adapt them for my grid. I think I'm very close but for some reason alghout each individual selector/traversal function seems to work in isolation, none of it seems to work when I put it all together. Can anybody spot any

[jQuery] Change div

2007-11-26 Thread PuppyPaw
Hey, I'm wanting to change a div to another one onclick and then back again when its clicked again. I've managed to get it to change the div on the first click but clicking it again doesn't do anything. Here is the HTML div id=maximize onClick=onMaximize()/div div id=restore

[jQuery] Re: Best way to attach settings to a bunch of HTML

2007-11-26 Thread jonhobbs
Thanks for your answers guys. I thought there might be some very clever way of doing it that the pros aren't telling us about. I'm guessing if my Javascript skills were better I'd probably be able to create a Grid object with lots of handy properties and create an instance of that object for

[jQuery] Re: persisted sortable divs...

2007-11-26 Thread sal
K so I've gotten the sort down, any thoughts on storing the order in a cookie?? anyone? On Nov 13, 3:01 pm, sal [EMAIL PROTECTED] wrote: Hello All, So I've played with other libraries including mootools, and prototype/ scriptaculous quite a bit, but I've decided to move on to other

[jQuery] limits using dblclick when too many elements ?

2007-11-26 Thread dehneg
Hello, My script has a strange behaviour and I can not found why. My html code looks like : div class=bioNumUnit span class=siteSelector id=s11/span span class=siteSelector id=s22/span span class=siteSelector id=s33/span span class=siteSelector id=s44/span ... ... span

[jQuery] Re: jqModal Overlay not positioned correctly

2007-11-26 Thread [EMAIL PROTECTED]
Annoying huh? It took me ages (well couple of hours) to figure it out. Add this at the beging of your html !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Strict//EN http:// www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd Now it should work for you... On Nov 16, 8:54 pm, donjuanica [EMAIL PROTECTED]

[jQuery] Re: autocomplete new dependency

2007-11-26 Thread Jörn Zaefferer
Shelane schrieb: I downloaded the latest from the repository today and found I was get an error of list.scrollTop not a function. I saw something about a dependency on the dimensions plugin. So I added that to the scripts loaded before the autocomplete. I was then getting a strange issue on

[jQuery] Re: autocomplete new dependency

2007-11-26 Thread Shelane Enos
What is the complete dependency list now? Was the results issue I was having in Rev 2384 fixed with your latest? Tomorrow morning (pacific time here - currently 4:30 PM on Nov 26) I'll see about updating my external pages to demo my problem. I'm heading out in 15 minutes, so I can't work on it

[jQuery] Re: autocomplete new dependency

2007-11-26 Thread Stefan Kilp [sk-software]
when i look at http://jqueryjs.googlecode.com/svn/trunk/plugins/autocomplete with TortoiseSVN ist shows Revision 3917 not 2384. Is that the current version or am i getting something wrong? Best regards, Stefan Kilp Shelane schrieb: I downloaded the latest from the repository today and

[jQuery] Re: jQuery 1.2 features (wha'ts new)

2007-11-26 Thread Wizzud
http://docs.jquery.com/Release:jQuery_1.2 On Nov 26, 9:03 pm, Jay [EMAIL PROTECTED] wrote: I looked through the whole site and cannot find a table of content or even a comparison table highlighting the new features of v1.2. We are currently using 1.1.3.1 and I need to know what has been

[jQuery] jquery.autocomplete.js -- IE unresponsive bug?

2007-11-26 Thread jquery
All of a sudden getting users on IE complaining of an unresponsive script message. It's a simple autocomplete using jquery.autocomplete.js. Are there any known issues here?

[jQuery] Re: Image Rotator Plugin?

2007-11-26 Thread Spencer
Excellent plugin Mike. It works great and has lots of features. Thanks. On Nov 26, 12:07 pm, Andy Matthews [EMAIL PROTECTED] wrote: My pleasure...but make sure to thank Mike too, he's on this list. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On

[jQuery] Re: NaNpx problem in jQuery 1.2.1

2007-11-26 Thread Dave Methvin
$result.css({ top: (pos.y + $input.offsetHeight) + px, Maybe you meant $input[0].offsetHeight instead? var pos = findPos(document.getElementById($input.attr(id))); I think this is just var pos = findPos($input[0]); Instead of using findPos, you should be able to use

[jQuery] Re: persisted sortable divs...

2007-11-26 Thread Dave Methvin
So do you need to store the data in a cookie, or just the information on the sort order? How much data do you think it would be?

[jQuery] Re: jQuery.Rule 0.9

2007-11-26 Thread Flesler
Ahem.. :) Ariel Flesler On 23 nov, 01:19, Flesler [EMAIL PROTECTED] wrote: I released 0.9.2, this version should work with Opera and Safari. Added support for queue, dequeue and animate. YES, animate :D That means you can animate thousands of elements without going through the animation

[jQuery] Re: autocomplete new dependency

2007-11-26 Thread Shelane Enos
The min version I downgraded to is 2384. So, I'm trying to figure if 3917 fixes the problem of the results showing then being replaced with a less granular results set. 3917 is the one where I had the problem with the horizontal scrollbar showing up on Firefox. On 11/26/07 4:39 PM, Stefan

[jQuery] Re: jQuery 1.2.1 errors with Interface

2007-11-26 Thread SimonRaven
On Nov 19, 7:40 am, alexanmtz [EMAIL PROTECTED] wrote: Im having the same issue, if you fix the problem, please report here... I'll do the same when I discovered... On Nov 5, 9:28 pm, Nicolae Namolovan [EMAIL PROTECTED] wrote: I'm doing $('#some').SlideInRight(500); The effect is

[jQuery] Re: Off-line documentation

2007-11-26 Thread Adwin Wijaya
can jquery provide with the offline wiki (updated every week or month) so that everyone can have the offline documentation .. i used to work on the place where there is no internet access .. so i need to open the documentation everytime. currently i still use documentation from jquery 1.3.x I do

[jQuery] is it a bug?

2007-11-26 Thread Jacky
Hi, I make the Reversion #3944 of jQuery from svn,and there is an error, error: selector has no properties source:/jquery.js line:343 is it a bug?

[jQuery] selector to string

2007-11-26 Thread Jean-Sébastien
I'm sure it's a simple question, but i'm looking in the api but don't find it. How do i convert my selected element to a string? something like : #myId a.myClass

[jQuery] getting height of frameset window

2007-11-26 Thread Phil Glatz
I'm trying to get the height of the enclosing frameset window in a page that is using traditional framesets. I am in a function called by the lower frame. I've tried the dimension plugin, and $ (window).outerHeight() is reporting the height of the window the current frame is in. I'm in a frame

[jQuery] How to access dynamic raw images generated by PHP?

2007-11-26 Thread dan837
I have a script in PHP which will output an image directly to the browser ( imagepng($image) ). It isn't stored anywhere permanently. I'd like for jQuery to display this image on the page, but I can't think of a feasible way for jQuery to access the image stream and output it to the browser. I

[jQuery] Jquery Ajax dropping special characters

2007-11-26 Thread damitha
I am trying to send an mysql query to the server from a client programme by using the jquery $.ajax({}) function. The query string comprises of + sign which is used to assign student grades (such as C+). The server side programming is in php. However I have realized at the time of sending the

[jQuery] Re: Can $(document).ready() be put into a separate JS file?

2007-11-26 Thread Stephen
Hi, I am doing what you suggest: I have my code like this, but I get $ is undefined head titleTest/title script type=text/javascript src=js/jquery.js/script script type=text/javascript src=js/nav.js /script /head It seems jquery.js isn't loaded before nav.js, but this

[jQuery] Re: selector to string

2007-11-26 Thread Suni
I dont think there is any easy way to do that. A single DOM element could have 10 different selectors that match it (or others with it). Such a function could return just #myId, or maybe div.foobar a. Why would you need to do this in the first place? Once you've selected an element you