[jQuery] http://:/ issue?

2007-07-12 Thread Roger Ineichen
Hi all I have on my server and see it on this page too: http://dev.iceburg.net/jquery/jqModal/ a problem. There is a call to http://:/ initialized from the JQuery library. Any idea what forces JQuery to do this call? Regards Roger Ineichen _ Projekt01 GmbH

[jQuery] Re: Slider Example

2007-07-12 Thread Gilles (Webunity)
Glen; take a look at this one: http://dev.jquery.com/~gilles/slider/ It's broken, but styled ;) it needs the interface libs but it should run then... On Jul 12, 5:04 am, Glen Lipka [EMAIL PROTECTED] wrote: Does anyone have a version of the Interface Slider on a public site? Something

[jQuery] Re: Slider Example

2007-07-12 Thread Glen Lipka
Thanks. I am looking for an in the wild example though. Something someone is using for a public site. This one does look nice though. I am assuming the next gen interface will have nice examples like that. GLen On 7/11/07, Gilles (Webunity) [EMAIL PROTECTED] wrote: Glen; take a look at

[jQuery] Re: too much recursion (sound PopUp)

2007-07-12 Thread tlob
anyone? On 11 Jul., 09:26, tlob [EMAIL PROTECTED] wrote: I just found out, that it is not working in IE7 I dont know where the problem is, FF seems ok THX in advance! tom On 10 Jul., 17:21, tlob [EMAIL PROTECTED] wrote: Hello I finaly managed to finish my job. Only with your

[jQuery] Re: pausing innerFade on click

2007-07-12 Thread tlob
THX for the answer(s). I can see your two similar posts know. No Googleswollowing accured. I think I throw the innerFade Plugin over board and implement the cycle http://www.malsup.com/jquery/cycle/ plugin, that has a stopping method. I could save a lot of time if I did not go with that

[jQuery] Re: too much recursion (sound PopUp)

2007-07-12 Thread Sean Catchpole
The problem is with this line: sound=window.open(url,'soundbumbam','height=50,width=150'); Try declaring sound at the top of the script var sound; ~Sean

[jQuery] Re: Slider Example

2007-07-12 Thread tlob
I did one with the Prototype framework. http://www.berufsberatung.ch/dyn/12064.asp not broken (except IE7) and not very styled ;-) cheers tom On 12 Jul., 09:11, Glen Lipka [EMAIL PROTECTED] wrote: Thanks. I am looking for an in the wild example though. Something someone is using for a

[jQuery] Re: http://:/ issue?

2007-07-12 Thread Erik Beeson
When do you see such a thing happening? I'm using firebug to watch all network traffic and I don't see that request, nor do I see any javascript errors that would indicate something isn't right... --Erik On 7/11/07, Roger Ineichen [EMAIL PROTECTED] wrote: Hi all I have on my server and see

[jQuery] Re: ajax api question

2007-07-12 Thread Salvatore FUSTO
Hi, you can also write $.post('test.cgi', params, function(data) { myCallback(data,arg1,...);}); function myCallback()data, arg1,...){...} if you need to pass arguments, other than data, to callback function salvatore - Original Message - From: james_027 [EMAIL PROTECTED] To: jQuery

[jQuery] Validation Plugin

2007-07-12 Thread howard chen
abt this plugin: http://bassistance.de/jquery-plugins/jquery-plugin-validation/ several problems: 1. Is it possible to dynamic add INPUT into the current list of checking? 2. Is it possible to user `id` instead of `name`? 3. Is it possible to check for something like name=email[] ? THanks

[jQuery] Re: Draggable Thickbox?

2007-07-12 Thread Michael Price
ricardoe wrote: Why dont you try a Window widget? Like the Interface Window http://interface.eyecon.ro/demos/windows.html 'tis good, I like it, thanks. :) However, not long after posting (as it always the way) I found jqModal, so at the moment I'm trying that out - client seems pleased

[jQuery] AW: [jQuery] Re: http://:/ issue?

2007-07-12 Thread Roger Ineichen
Hi Erik I see it on different pages. Here is one: http://alpha.z3c.org/ It happens with JQuery packed or full version, also with version 1.1.3.1. or 1.1.2 I have this issue only with IE7. Here's a traffic report. See no. 5 after jquery.pack.js: 110:36:42:421 0.234 s GET 200

[jQuery] autoHeight Plugin

2007-07-12 Thread Chango
Anyone knows how to do for this to work on Opera? I have tested on IE, Firefox and works perfect, in Opera don't do the trick. The Plugin Site: http://lib.mobius.tw/jquery/myplugin/iframe_autoHeight/api.htm Cheers!

[jQuery] Re: AW: [jQuery] Re: http://:/ issue?

2007-07-12 Thread Michael Geary
I don't see it happening here. This is the URL list I got using IE7 and Fiddler2: http://alpha.z3c.org/ http://alpha.z3c.org/@@/xmlhttp.js http://alpha.z3c.org/@@/json.js http://alpha.z3c.org/@@/jquery.pack.js http://alpha.z3c.org/@@/jsonform.validate.js http://alpha.z3c.org/@@/interface.js

[jQuery] Re: Syntactic sugar for checking whether an element exists

2007-07-12 Thread Christof Donat
Hi, Why? For me the sweetest thing about using jQuery has been it's intuitiveness right out of the box. When I started I just looked at some initial code samples (fancy API pages weren't around back then or I didn't know about them) and then was virtually able to 'guess' the jQuery

[jQuery] Re: how to fetch data by php page from jQuery

2007-07-12 Thread Rob Desbois
How so? If I understand correctly, Xinhao wants to create a PHP script which can provide JSON data when requested. The only method of doing this is by outputting it. It is possible to make the script only output if requested by the XmlHttpRequest object, but this is very easily spoofed, and the

[jQuery] Re: Syntactic sugar for checking whether an element exists

2007-07-12 Thread Christof Donat
Hi, However, as you said this library is more then just code, it's art. And this is why I'm emphasizing those new functions: They empower the artist Perfection is achieved, not when there is nothing more to add, but when there is nothing left to take away. (Antoine de Saint-Exupéry) Don't

[jQuery] Re: Syntactic sugar for checking whether an element exists

2007-07-12 Thread Christof Donat
Hi, var element; if ( (element=$('#someID')[0]) ) { /* element exists */ } else { /* damn... */ } I'd prefer var e if( (e=$('#someID')).length ) { // element Exists } else { // element does not exist } Usually you whant to know if an Element exists to create it

[jQuery] Re: Syntactic sugar for checking whether an element exists

2007-07-12 Thread Christof Donat
Hi, if( ! (e=$('#someID').length) ) e = $('p id=someIDasdf/p').appendto('#myParent'); e.hide(); Oops. if( ! (e=$('#someID')).length ) e = $('p id=someIDasdf/p').appendto('#myParent'); e.hide(); Just close the parentheses where they should be closed :-) Christof

[jQuery] AW: [jQuery] Re: AW: [jQuery] Re: http://:/ issue?

2007-07-12 Thread Roger Ineichen
Hi Mike Betreff: [jQuery] Re: AW: [jQuery] Re: http://:/ issue? I don't see it happening here. This is the URL list I got using IE7 and Fiddler2: [...] No funny /:/ in the list. Not sure what that is about or why you're seeing it. What tool are you using to watch the traffic? I'm

[jQuery] Re: Plugin scope for methods and 'this'

2007-07-12 Thread Tane Piper
Hello again, I really need to try nail this plugin so I can move on to other things in the project. This bit forms an important part of my event system, and possibly other parts of my application, but i'll also be releasing this code to the community. What I've done is, because the Geocoder

[jQuery] Best way to use an ajax comment system?

2007-07-12 Thread inVINCable
Hey everyone, I am using the form plugin (great btw) and the .load function (I need to because i am using cakephp) I was wondering, what is the best way to go about updating the comments? So far I have just been updating the whole div that contains all of the comments. I feel I may be putting too

[jQuery] problem using with jQuery.noConflict();

2007-07-12 Thread Byron
Hi all, I've started using jquery in the development of a firefox extension. it works pretty well, aside from a few effects not working properly but that i can deal with (only effects i'll want will be toggle, hide etc...) anyway to the point. generally when developing extensions i like to

[jQuery] Select radio button item

2007-07-12 Thread Oscar esp
I have a radio button group. I would like check an item when a user click on button. The radio group has 3 items. I know that I can get the radio button group using: jQuery(#idRadioButton).click() However I dont' know how select an item specifically (for exemple which has value='') thanks

[jQuery] Select radio button item

2007-07-12 Thread Oscar esp
I have a radio button group with 4 items, each one has a value (1,2,3,''). On click in a button of my form I would like the check the radio button with '' value. I supose that I can access to the radio group ussing $(@idRaio) but then I don't know how can access to the item with value='' Any

[jQuery] Calling jQuery from within a ThickBox

2007-07-12 Thread GreboGuru
Hi, I'm guessing that I'm doing something wrong ... I've want to be able to collpase some DIVs on a form but when the form is in a thickbox it doesn't work, when it isn't it does. Any help would be appreciated. Thanks!

[jQuery] strange behaviour with jquery and forms plugin

2007-07-12 Thread Mark
Hi, I am having this strange behaviour. I have a div with several forms (9) inside: div form class=xx input type=file... /form form class=xx input type=file... /form . . . /div en each form I have an input type file component, and the goal is to upload each file separately to

[jQuery] Re: Syntactic sugar for checking whether an element exists

2007-07-12 Thread Felix Geisendörfer
Christof: I appreciate your comments. Even more however I would have appreciated if you'd have taken into consideration why I made the proposal. I didn't do so because I personally need this functionality, but because I think both exists() and hasClass() would make the library more accessible

[jQuery] using JSON... and the jQuery book

2007-07-12 Thread GianCarlo Mingati
Hi all. http://www.gcmingati.net/wordpress/wp-content/uploads/jsonhelicopters.html Here's what i learned form the book, chapter 6 (Ajax techniques). I went faster than i expected. The book explains clearly and easily how to dinamically insert content into a page... wow this is hooking me as much

[jQuery] Selector Optimisation Question

2007-07-12 Thread NeilM
I have just started to use jQuery in my web development and have a question concerning optimising element selection. I find that I create a lot of references to id'd elements: img id=myImage src=todaysimage.gif width=20 height=20 / Then, in my JavaScript, I want to obtain a reference to the

[jQuery] Re: Selector Optimisation Question

2007-07-12 Thread Klaus Hartl
NeilM wrote: I have just started to use jQuery in my web development and have a question concerning optimising element selection. I find that I create a lot of references to id'd elements: img id=myImage src=todaysimage.gif width=20 height=20 / Then, in my JavaScript, I want to obtain a

[jQuery] Strange behavior

2007-07-12 Thread Mario Moura
Hi Folks I wrote: $(#fragment-2 .pager .pager-list a).attr(href, function() {return this.href + ('#fragment-2')}); When I insert into my Firefox Console and run works fine. When I tried insert into my pages this Jquery function didnt run. I tried everything (after Jquery script, after and

[jQuery] Re: Strange behavior

2007-07-12 Thread Marc Jansen
Hi Mario! You might try this: jQuery(document).ready(function() { $(#fragment-2 .pager .pager-list a).each( $(this).attr(href, this.href + '#fragment-2'); ); // other calls to be fired afterwards }); untested as usual -- Marc Mario Moura schrieb: Hi Folks I wrote: $(#fragment-2

[jQuery] addClass only works once

2007-07-12 Thread stef
Im using the code below to display / hide form fields depending on what value is selected from a drop down list (id='category'). the optional form fields are all hidden by default when DOM is ready, using $(document).ready(function() { $(#dimensions).addClass(hidden)

[jQuery] Show / hide options based on class

2007-07-12 Thread Michael Price
Hi all, I've got two select boxes side by side - initially the right hand side box has ALL options in it - and the left hand box can be used to filter the options displayed. Probably not the best way to do it (in fact, defintiely - it doesn't work in IE) but the left hand list has options

[jQuery] Re: Select radio button item

2007-07-12 Thread Marc Jansen
Hi Oscar: Try this: $( 'form input:[EMAIL PROTECTED]'nameOfYourRadios'[EMAIL PROTECTED]''] ) untested as usual -- Marc Oscar esp schrieb: I have a radio button group with 4 items, each one has a value (1,2,3,''). On click in a button of my form I would like the check the radio button

[jQuery] Re: Calling jQuery from within a ThickBox

2007-07-12 Thread Marc Jansen
GreboGuru schrieb: Hi, I'm guessing that I'm doing something wrong ... I've want to be able to collpase some DIVs on a form but when the form is in a thickbox it doesn't work, when it isn't it does. Any help would be appreciated. Thanks! Hi, I#m not exactly sure, but isn't an iframe

[jQuery] Re: Select radio button item

2007-07-12 Thread Marc Jansen
I had a typo: $( form input:[EMAIL PROTECTED]'nameOfYourRadios'[EMAIL PROTECTED]''] ) Marc Jansen schrieb: Hi Oscar: Try this: $( 'form input:[EMAIL PROTECTED]'nameOfYourRadios'[EMAIL PROTECTED]''] ) untested as usual -- Marc Oscar esp schrieb: I have a radio button group with 4

[jQuery] Re: Best way to use an ajax comment system?

2007-07-12 Thread Marc Jansen
inVINCable schrieb: Hey everyone, I am using the form plugin (great btw) and the .load function (I need to because i am using cakephp) I was wondering, what is the best way to go about updating the comments? So far I have just been updating the whole div that contains all of the comments. I

[jQuery] Re: addClass only works once

2007-07-12 Thread Marc Jansen
Hi stef, Maybe you should explicitly removing the class 'show' before asdding the class hidden: $(#dimensions).removeClass(show).addClass(hidden) -- Marc stef schrieb: Im using the code below to display / hide form fields depending on what value is selected from a drop down list

[jQuery] Re: addClass only works once

2007-07-12 Thread Klaus Hartl
stef wrote: Im using the code below to display / hide form fields depending on what value is selected from a drop down list (id='category'). the optional form fields are all hidden by default when DOM is ready, using $(document).ready(function() { $(#dimensions).addClass(hidden)

[jQuery] Re: Show / hide options based on class

2007-07-12 Thread Marc Jansen
Michael Price schrieb: Hi all, I've got two select boxes side by side - initially the right hand side box has ALL options in it - and the left hand box can be used to filter the options displayed. Probably not the best way to do it (in fact, defintiely - it doesn't work in IE) but the

[jQuery] Autocomplete Plugin Issue With IE6

2007-07-12 Thread Jeff Fleitz
I am using Jörn's Autocomplete alpha plugin (not from the svn repository) along with jquery 1.1.3.1 and am having some problems in IE6 related to selected options from the drop downs. The autocomplete control works fine if I use the down arrow to navigate to a choice. However, if I use the

[jQuery] href attribute discrepancies: is this a bug?

2007-07-12 Thread Stephan Beal
Hi, all! i noticed the following today (jQ v1.1.3.1): var lbl = jQuery(a href='#foo'/); alert( lbl.attr('href') ); // == #foo alert( lbl[0].href ); // == http://my.site/path/#foo; My questions are: a) What is the reason (if any) for this discrepancy? b) Is this a jQ bug? i would expect

[jQuery] Re: addClass only works once

2007-07-12 Thread Stephan Beal
On Jul 12, 2:15 pm, stef [EMAIL PROTECTED] wrote: else if ($(#category).val() == accessoires) Are you sure that's correct? accessories is spelled wrong. i can't see if it's also misspelled in your code, so i can't judge if that's the problem or not. i am,

[jQuery] Re: Select radio button item

2007-07-12 Thread Eric Greene
Hi, what does the @value=''] part of it do? Thanks! On 7/12/07, Marc Jansen [EMAIL PROTECTED] wrote: Hi Oscar: Try this: $( 'form input:[EMAIL PROTECTED]'nameOfYourRadios'[EMAIL PROTECTED]''] ) untested as usual -- Marc Oscar esp schrieb: I have a radio button group with 4

[jQuery] test

2007-07-12 Thread Salvatore FUSTO
excuse for this test

[jQuery] Re: .click() fails in 1.1.3 (work in 1.1.2)

2007-07-12 Thread John Resig
That's correct - jQuery no longer interacts with events that are bound using old event handlers. Although, this could probably be resolved. Could you file a bug on this in the bug tracker? http://dev.jquery.com/ --John On 7/12/07, Bin [EMAIL PROTECTED] wrote: script

[jQuery] Re: Select radio button item

2007-07-12 Thread dswitzer
Oscar, I have a radio button group with 4 items, each one has a value (1,2,3,''). On click in a button of my form I would like the check the radio button with '' value. I supose that I can access to the radio group ussing $(@idRaio) but then I don't know how can access to the item with

[jQuery] problem with each() function

2007-07-12 Thread Salvatore FUSTO
Hi, i've a table in which there are a number of cells, of class myCl: these cells are not in all rows; in each of these cells i have one select and one input ; i would retreive for each myCl-classed td the value of the first element, then i think to write:

[jQuery] Re: problem with each() function

2007-07-12 Thread Jake McGraw
You have to wrap this with the jQuery $() object: $(this).children.eq(0)... - jake On 7/12/07, Salvatore FUSTO [EMAIL PROTECTED] wrote: Hi, i've a table in which there are a number of cells, of class myCl: these cells are not in all rows; in each of these cells i have one select and one

[jQuery] Re: problem using with jQuery.noConflict();

2007-07-12 Thread John Resig
You'll have to use a separate namespace - jQuery, internally, expects the 'this' object to refer to itself - and if it's within the context of another object, it'll probably get confused. (I've never tried this personally.) That being said, I like that idea, and it would be cool if jQuery could

[jQuery] Re: Syntactic sugar for checking whether an element exists

2007-07-12 Thread Christof Donat
Hi, Christof: I appreciate your comments. Even more however I would have appreciated if you'd have taken into consideration why I made the proposal. I did do so, but I think it doesn't help to have functions which have semantically irritating names. If a function is called exists(), that

[jQuery] Field Plug-in Update - New $.limitSelection() and $.createCheckboxRange() functions

2007-07-12 Thread Dan G. Switzer, II
I've updated my Field Plug-in: http://jquery.com/plugins/project/field I've fixed an issue with the $.formHash() method and added the following: $(input:checkbox).limitSelection(3, errorCallback, successCallback); Limits the user from being able to select more than 3 items in a checkbox/select

[jQuery] Re: Calling jQuery from within a ThickBox

2007-07-12 Thread GreboGuru
Hi Thanks for your response ... tried your suggestion but it didn't make any difference but that got me thinkin, and . Thick box takes a copy of my hidden DIV and displays it accordingly, but this means that the ids of the DIV contents are duplicated. So my event handler was acting on

[jQuery] Interface: Draggable table row in IE

2007-07-12 Thread JeffR
Hey everyone. Over the past couple of days, I've discovered the magic of jQuery and am in love! However, here's my situation. I'm basing a project on the Folder tree demo on the Interface website. What I need is to take a row out of a table and categorize it by dropping it in a folder. Easy

[jQuery] fadeOut in IE7 /Opera doesn't happen?

2007-07-12 Thread [EMAIL PROTECTED]
I am trying to do an AJAX function that will let someone delete an item in a directory (table) of items. Here is my jquery code: function destroyMe(newsID) { var thisData = newsID= + newsID; var thisTR = tr# + newsID + newsID; $.ajax({

[jQuery] Re: addClass only works once

2007-07-12 Thread stef
accessories was spelt wrongly indeed but not the cause of the problem. first two replies corrected the issue. thanks alot guys! On Jul 12, 2:36 pm, Stephan Beal [EMAIL PROTECTED] wrote: On Jul 12, 2:15 pm, stef [EMAIL PROTECTED] wrote: else if ($(#category).val() ==

[jQuery] Re: Load Google Analytics from jQuery

2007-07-12 Thread Skullman
Hey! That was pretty neat! I will try your code and tell you if it works... Thanks a lot polyrhythmic!!! On 6 jul, 21:37, polyrhythmic [EMAIL PROTECTED] wrote: Found what I was looking for... //forget this code: - $(#ga).after('script type=text/javascript_uacct = UA-2158413-2;

[jQuery] interface: sort dynamic lists

2007-07-12 Thread carlos
Hi, I have an empty list which the user can add items to. Because it's built by the user after the page loads, interface sortables won't work on this list. is this possible with interface? thanks, carlos

[jQuery] Help with Superfish drop down menu

2007-07-12 Thread fr0sty
Hello, Im trying to add an extra (third) level to the example that's posted here http://users.tpg.com.au/j_birch/plugins/superfish/ I have my own edited example on http://www.onbereikbaar.nl/menu i've added an extra level to the menu, but it shows rightaway, can anyone tell me what i need to

[jQuery] jQuery in Action

2007-07-12 Thread Scott Sauyet
Who's doing the Manning jQuery in Action book? I've just been asked to do a technical review. -- Scott

[jQuery] Re: jQuery in Action

2007-07-12 Thread John Resig
Umm - I have no idea! Yehuda has been working on jQuery Quickly - is this book different from that one? --John On 7/12/07, Scott Sauyet [EMAIL PROTECTED] wrote: Who's doing the Manning jQuery in Action book? I've just been asked to do a technical review. -- Scott

[jQuery] Re: Help with Superfish drop down menu

2007-07-12 Thread Joel Birch
Hi Arjan, You probably need to add the new level to the hover override declaration. So change this CSS: /*following rule negates pure CSS hovers so submenu remains hidden and JS controls when and how it appears*/ .superfish li:hover ul, .superfish li li:hover ul { top:-999em; } ...

[jQuery] Re: jQuery in Action

2007-07-12 Thread Glen Lipka
Im working with Manning, but not in Action. Glen On 7/12/07, Scott Sauyet [EMAIL PROTECTED] wrote: Who's doing the Manning jQuery in Action book? I've just been asked to do a technical review. -- Scott

[jQuery] Re: .click() fails in 1.1.3 (work in 1.1.2)

2007-07-12 Thread Sam Collett
I didn't expect it to be changed in a 1.1.x release (as it is a significant change), so maybe 1.1.2 is a safer bet for many, until 1.1.4 (will be fixed then?). So perhaps from now on it would be better to do $(a).bind(click, clickFn) to bind and $(a).trigger(click) to click? bind and trigger are

[jQuery] Re: slightly OT: tiny webdesign utility

2007-07-12 Thread Klaus Hartl
Stephan Beal wrote: Hi, all! i wanted to pass along a trivial utility which i find indispensable in my day-to-day web work. It's 100% cross-platform and doesn't require any special know-how to use. i call it a PNG Image. Here's how it works... Grab this image:

[jQuery] Re: addClass only works once

2007-07-12 Thread Sam Collett
Have you tried using .hide() and .show() instead of addClass? Less code (both JavaScript and CSS). Unless the class 'show' has more than just display: inline? On Jul 12, 1:15 pm, stef [EMAIL PROTECTED] wrote: Im using the code below to display / hide form fields depending on what value is

[jQuery] Re: .click() fails in 1.1.3 (work in 1.1.2)

2007-07-12 Thread John Resig
Yes, they're not going anywhere. This change came about with the overhauled event system - all of the changes of which were in 1.1.3a (which we asked everyone to help test). Obviously this one got through. --John On 7/12/07, Sam Collett [EMAIL PROTECTED] wrote: I didn't expect it to be

[jQuery] Re: addClass only works once

2007-07-12 Thread stef
will the line below work even if there is no class hidden to remove - will the addClass part still work? Im thinking it wont ... $(#dimensions,#inthebox).removeClass(hidden).addClass(show) On Jul 12, 4:43 pm, stef [EMAIL PROTECTED] wrote: accessories was spelt wrongly indeed but not the cause

[jQuery] Re: addClass only works once

2007-07-12 Thread Klaus Hartl
stef wrote: will the line below work even if there is no class hidden to remove - will the addClass part still work? Im thinking it wont ... $(#dimensions,#inthebox).removeClass(hidden).addClass(show) It will! --Klaus

[jQuery] jQuery and Google Gears?

2007-07-12 Thread Leandro Vieira Pinho
I would like to kwown, if the jQuery pretend lo release something related with Google Gears.

[jQuery] Re: Using AutoCompleter, how do you pass parameters

2007-07-12 Thread AtlantaGeek
It's always something. I am trying to get your version up and running, but I keep getting an object expected error in IE 7 when it hits document.ready. The code is below. I have, of course, a texbox on the page defined like so: input type=text name=txtItem id=txtItem size=15

[jQuery] announce: yet another minimal tabs implementation

2007-07-12 Thread Stephan Beal
Hiya! What jQuery needs now is yet another tabbed interface plugin. Yeah, right!!! My 2nd jQ plugin: http://wanderinghorse.net/computing/javascript/#bogotabs It's nowhere as feature-rich as idTab or Klaus' tabs, but we can't all be rich, can we?. Using it looks like this:

[jQuery] Re: test

2007-07-12 Thread Aaron Heimlich
You are excused :) On 7/12/07, Salvatore FUSTO [EMAIL PROTECTED] wrote: excuse for this test -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: Using AutoCompleter, how do you pass parameters

2007-07-12 Thread AtlantaGeek
Fixed that object expected error. It seems JQuery (or your autocompleter) was sensitive to the SCRIPT tag. Had to make it: script language=text/javascript instead of: script language=javascript yet it was just javascript for quite awhile now and I was not getting this error. Not sure why

[jQuery] Re: Show / hide options based on class

2007-07-12 Thread Michael Price
Marc Jansen wrote: var $possibleOptsRight; $( document ).ready(function() { $possibleOptsRight = $('#rightselectlist option'); $( '#leftselectlist' ).bind('change', function() { $('#rightselectlist') .children().remove().end() .append( $possibleOptsRight ).children()

[jQuery] Re: test

2007-07-12 Thread Salvatore FUSTO
thanks :) - Original Message - From: Aaron Heimlich To: jquery-en@googlegroups.com Sent: Thursday, July 12, 2007 5:46 PM Subject: [jQuery] Re: test You are excused :) On 7/12/07, Salvatore FUSTO [EMAIL PROTECTED] wrote: excuse for this test -- Aaron

[jQuery] Re: Plugin scope for methods and 'this'

2007-07-12 Thread Michael Geary
Tane, load your page in Firefox with Firebug enabled. Open the Firebug pane and click Script, then turn on Options/Break on All Errors. Now do your address lookup. Firebug will stop on your line with the error. Look at what is displayed in the Watch window. Observe that this is the Window

[jQuery] Re: bgiframe broken by 1.1.3.1

2007-07-12 Thread Geoffrey Knutzen
Thank you kindly _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Brandon Aaron Sent: Wednesday, July 11, 2007 9:21 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: bgiframe broken by 1.1.3.1 Hey Geoffrey, Feel free to grab the latest from SVN

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

2007-07-12 Thread Chris
Works fine. Thanks On Jul 11, 9:32 pm, Dan G. Switzer, II [EMAIL PROTECTED] wrote: Is there a bug with formHash() and radio buttons? Or am I missing the obvious. With this form Change the hashForm to: $.fn.formHash = function(inHash){ var bGetHash =

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

2007-07-12 Thread Dan G. Switzer, II
Chris, Works fine. Thanks I've already posted the fixed code: http://jquery.com/plugins/project/field (And also added some new functions.) -Dan

[jQuery] Re: jQuery in Action

2007-07-12 Thread Scott Sauyet
John Resig wrote: On 7/12/07, Scott Sauyet [EMAIL PROTECTED] wrote: Who's doing the Manning jQuery in Action book? I've just been asked to do a technical review. Umm - I have no idea! Yehuda has been working on jQuery Quickly - is this book different from that one? On 7/12/07, Scott Sauyet

[jQuery] Re: Plugin scope for methods and 'this'

2007-07-12 Thread Tane Piper
Thanks, but on IRC and thanks to the amazing Dave Cardwell, I've managed to fix this. I'm going to clean it up and write a full demo page tommorow, and I'll be releasing it. I'll have a look over your email tomorrow (as it's hometime now) to see if there are any other tips that I can use to

[jQuery] Re: using JSON... and the jQuery book

2007-07-12 Thread Jean
Yeah i´m using a lot json for now with json_encode and json_decode libs for php \o/ On 7/12/07, GianCarlo Mingati [EMAIL PROTECTED] wrote: Hi all. http://www.gcmingati.net/wordpress/wp-content/uploads/jsonhelicopters.html Here's what i learned form the book, chapter 6 (Ajax techniques). I

[jQuery] Re: using JSON... and the jQuery book

2007-07-12 Thread Jack Killpatrick
This might be of interest to you, too: http://code.google.com/p/trimpath/wiki/JavaScriptTemplates It will get you around having to do stuff like: $.each(entry['model'], function(modIndex, mod){ result += 'li'+ mod + '\/li'; }); I use it all the time for merging json data

[jQuery] Re: jQuery in Action

2007-07-12 Thread Karl Swedberg
pretty sure that's the one. Bear is working with Yehuda. --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Jul 12, 2007, at 1:00 PM, Scott Sauyet wrote: John Resig wrote: On 7/12/07, Scott Sauyet [EMAIL PROTECTED] wrote: Who's doing the Manning jQuery

[jQuery] Swap two Interface Draggables

2007-07-12 Thread Fredrik Karlsson
Currenly I'm working on a project where I'm using a bunch of droppables and draggables to organize list items. Now there is one thing I can't figure out how to do. If I have two droppables containing lists with items (div class=droppableul.../ul/div), and I want to swap one of the items in one

[jQuery] [ANNOUNCE] New JQuery Site: 64squar.es

2007-07-12 Thread weepy
64squar.es is a completely free, fully featured and easy to use online chess site with a clean simple interface. Users can play opponents in real-time by dragging and dropping the pieces just like a real chess board. Ajax is used to make your moves on the opponent's board and vice versa. We are

[jQuery] Re: [ANNOUNCE] New JQuery Site: 64squar.es

2007-07-12 Thread Rey Bango
Great job Jonah! Guys, be sure to hit the Dzone link here: http://www.dzone.com/links/64squares_ajaxpowered_online_chess.html I'll submit it to Digg tomorrow to avoid the Digg-effect! Rey weepy wrote: 64squar.es is a completely free, fully featured and easy to use online chess site with a

[jQuery] Setting DOM values (non-attributes)

2007-07-12 Thread John Farrar
I want to achieve this with jQuery. document.getElementById('postedText').scrollTop = document.getElementById('postedText').scrollHeight - document.getElementById('postedText').clientHeight; Did I miss it in the docs? John Farrar

[jQuery] Re: Setting DOM values (non-attributes)

2007-07-12 Thread Jonathan Sharp
Take a look at the dimensions plugin. (www.visualjquery.com - Plugins - Dimensions) -js On 7/12/07, John Farrar [EMAIL PROTECTED] wrote: I want to achieve this with jQuery. document.getElementById('postedText').scrollTop = document.getElementById('postedText').scrollHeight -

[jQuery] slideUp/slideDown toggle questions

2007-07-12 Thread djl
Hi there, I have a page with a div that uses a toggle slideUp/slideDown effect as follows:- var $jq = jQuery.noConflict(); $jq(document).ready(function() { $jq(#recenttoggle).toggle(function() { $jq(#recent).slideDown('slow'); } ,

[jQuery] Re: slideUp/slideDown toggle questions

2007-07-12 Thread Glen Lipka
Use slideToggle instead of slideDown or slideUp. It automatically figures out which is which and does the right thing. Check visualjQuery.com for examples and syntax. Hope this helps, Glen On 7/12/07, djl [EMAIL PROTECTED] wrote: Hi there, I have a page with a div that uses a toggle

[jQuery] Remove Column from a table

2007-07-12 Thread Mario Moura
Hi Folks I need remove first a last column from a table. To head I used $('#myid table thead tr th:first').remove() $('#myid table thead tr th:last').remove() Works fine but to body I am trying without sucess. I tried this but how you can see will delete only first and last cell. $('#myid

[jQuery] [ANNOUNCE] planet.jquery.com

2007-07-12 Thread Richard D. Worth
I am pleased to announce the latest jquery.com service: http://planet.jquery.com/ What is planet? Planet is a web feed aggregator. This will let you read all your favorite jQuery blogs on one page http://planet.jquery.com/, or with one feed urlhttp://planet.jquery.com/atom.xml . Whose blogs

[jQuery] Re: using JSON... and the jQuery book

2007-07-12 Thread Jean
tkz for the tip ;D On 7/12/07, Jack Killpatrick [EMAIL PROTECTED] wrote: This might be of interest to you, too: http://code.google.com/p/trimpath/wiki/JavaScriptTemplates It will get you around having to do stuff like: $.each(entry['model'], function(modIndex, mod){

[jQuery] Re: Plugin scope for methods and 'this'

2007-07-12 Thread Tane Piper
Hi folks, Ok I've put up a small demo site at http://webrocket.ulmb.com This is not quite the final version, but you can: * type in your zip/postcode or address into the search box and find your address on the map. * drag the marker that it creates to pinpoint a location. * with firebug, you

[jQuery] Re: Google Maps like interface with JQuery

2007-07-12 Thread Bruce
The below, while interesting leaves me wondering what the point is. by that, what does using jquery differ from just using normal map scripts? Bruce - Original Message - From: Rey Bango [EMAIL PROTECTED] To: jquery-en@googlegroups.com Sent: Monday, July 09, 2007 9:53 PM Subject:

[jQuery] Re: Google Maps like interface with JQuery

2007-07-12 Thread Tane Piper
Well by using jQuery, it makes it much easier to use the functionality. I've just posted this in another thread, but I've finished version 1 of my plugin. I just need to clean up a few things and put up a proper demo with instructions. You can try it out at http://webrocket.ulmb.com * type

  1   2   >