[jQuery] Re: Could anyone send me a copy of Catfish Advert Plugin 1.3.

2007-06-20 Thread Logan Cai
help.! Logan Cai wrote: > > Could anyone send me a copy of Catfish Advert Plugin 1.3. its official > site is offline now. > I am developing another Jquery based Open Source Project - Ajax Form > Builder, need it ASAP. > thanks in advance. > Logan Cai

[jQuery] Easing rocks

2007-06-20 Thread Glen Lipka
Had occasion just now to use the Easing plugin http://gsgd.co.uk/sandbox/jquery.easing.php I replaced a slideDown Toggle with bounceout. Kickass. And it's 2k! Too cool. Improves the interaction immediately, I'm changing my vote on stuff I think should be in the base. Yes, I am fickle. 1. Dim

[jQuery] Re: $(document).unbind('ready');

2007-06-20 Thread jim
thanks John, filed bug 1311 at: http://dev.jquery.com/ticket/1311

[jQuery] Re: Validate.js problem

2007-06-20 Thread BJ Clark
This is why I'm so confused. The code in the demo is: $("#form2").validate({ errorContainer: container, errorLabelContainer: $("ol", container), wrapper: 'li', meta: "validate", event: "keyup" }); My code is:

[jQuery] Re: ANNOUCE: idTabs plugin released!

2007-06-20 Thread Sean Catchpole
Do you only mean that it's (history) not built-in, or that there's a reason that it *can't* work with the history plugin? I only meant that Klaus has more built in support for things like ajax tabs and history control. However since you can bind any function you want, you can implement anythi

[jQuery] Re: How to get clicked cell position?

2007-06-20 Thread Matt Conrad
Thanks for the warning, Karl. Matt On 6/19/07, Karl Rudd <[EMAIL PROTECTED]> wrote: > > One warning, Safari always returns 0 for cellIndex. You can get around > this in a number of ways which will all depend on what your needs are.

[jQuery] Interface: Slider, fractions, onSlide reporting incorrect fractions?

2007-06-20 Thread Mitch
I have a Slider with fractions and an onSlide handler. Sometimes when the handler is invoked, the reported value for xProc seems to be "lagging" -- it seems to be the value from just before the slider jumped to its current position. Has anyone else seen this problem? I'd like to post an example

[jQuery] Re: NEWS: iPhone Browser Capabilites Released

2007-06-20 Thread wafla
I am not a javascript wizard (AFAIK), but this is a great opportunity to evangelize jQuery. Everybody and their brother will be looking to jump on board with an iPhone app, the same with Dashboard widgets. I expect to create an admin interface for my web company (total anticipated audience: 2).

[jQuery] Re: ANNOUCE: idTabs plugin released!

2007-06-20 Thread Jack Killpatrick
Sean, This looks ideal for something I'm working on...with one potential exception... on the Klaus tab on the idTabs page, you say "However, the /Tabs/ plugin can do many things like ajax history that /idTabs/ can not.". Do you only mean that it's (history) not built-in, or that there's a rea

[jQuery] Table cell navigation

2007-06-20 Thread Brad Perkins
Imagine a table row like this ... ... Depending on the select option I need to modify or clear values in the text inputs in the 2nd, 3rd, and 4th cells. I find that this code works, but suspect there may be a better way to achieve the sam

[jQuery] Re: $(document).unbind('ready');

2007-06-20 Thread John Resig
Possibly - file a bug on it and we might be able to get to it for jQuery 1.2. On 6/20/07, jim <[EMAIL PROTECTED]> wrote: Is it possible to change this behavior in jQuery so that the $ (document).bind('ready'... and unbind methods work (more) like other events? thanks, Jim

[jQuery] Re: $(document).unbind('ready');

2007-06-20 Thread jim
Is it possible to change this behavior in jQuery so that the $ (document).bind('ready'... and unbind methods work (more) like other events? thanks, Jim

[jQuery] Re: validate.js errors

2007-06-20 Thread Jörn Zaefferer
[EMAIL PROTECTED] wrote: Thanks Jörn! That appears to have removed the errors. However, the validation still isn't working; the form still submits (even in debug mode). Any ideas? Uhm, not really. Though after looking at your page again, it appears like you've commented (disabled) the valid

[jQuery] Re: NEWS: iPhone Browser Capabilites Released

2007-06-20 Thread Erik Beeson
I think the biggest reason to start adapting your webapp to the iPhone is so you can convince your boss that the company must buy you one to test with :) Here's a page that has a bit more detail: http://www.macrumors.com/2007/06/19/iphone-web-development-guidelines/ Whoops, I see they just pull

[jQuery] Re: NEWS: iPhone Browser Capabilites Released

2007-06-20 Thread Alexandre Plennevaux
Maybe using microformats? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dan G. Switzer, II Sent: mercredi 20 juin 2007 20:58 To: jquery-en@googlegroups.com Subject: [jQuery] Re: NEWS: iPhone Browser Capabilites Released >If I had to guess, I

[jQuery] Using jQuery to Skip Over the TinyMCE Toolbar When Tabbing Through Fields

2007-06-20 Thread Chris Scott
I ran into a problem with TinyMCE where it was in the middle of a set of form fields and the client wanted to have the tab key move them from the field before it into the editor. By default--even with tabindex set on all your form elements--both Firefox and IE will tab through all the links a

[jQuery] Re: validate.js errors

2007-06-20 Thread [EMAIL PROTECTED]
Thanks Jörn! That appears to have removed the errors. However, the validation still isn't working; the form still submits (even in debug mode). Any ideas? -Seth On Jun 20, 4:40 pm, Jörn Zaefferer <[EMAIL PROTECTED]> wrote: > [EMAIL PROTECTED] wrote: > > I'm working with the validate.js plug-in

[jQuery] Re: $(document).unbind('ready');

2007-06-20 Thread Jörn Zaefferer
jim wrote: Didn't realize document.ready wasn't an event...thanks Mike I can think of solutions to the problem but in general was trying todo something like: [...] How about this: function ready() { // do generic stuff } $(function() { ready(); }); // optional assert, overwrites generic s

[jQuery] Re: Help with node navigation

2007-06-20 Thread Jörn Zaefferer
Hi Andrew, a few ideas for you to try: A few questions: 1) Is there a direct way to get the value which is "_top_" above? I currently have this: var BaseTerm; $(xml).find('term:first').each(function(){ BaseTerm = $(this).text(); }); var baseTer

[jQuery] Re: $(document).unbind('ready');

2007-06-20 Thread jim
Didn't realize document.ready wasn't an event...thanks Mike I can think of solutions to the problem but in general was trying todo something like: // in default library $().ready(function(){ /* do generic things */ }) // in optional asset (if present) $().ready(function(){ /* cancel the 'do gen

[jQuery] Re: validate.js errors

2007-06-20 Thread Jörn Zaefferer
[EMAIL PROTECTED] wrote: I'm working with the validate.js plug-in from Jorn. I can't seem to get it to work, and was wondering if anyone else has had any issues. Please update to jQuery 1.1.2. You're using 1.0.4 on your page. -- Jörn Zaefferer http://bassistance.de

[jQuery] Re: [off-topic] how do you guys organize your project folders?

2007-06-20 Thread Jonathan Sharp
I use svn for everything and typically am domain centric with two projects, one for the site itself and one for stuff related to the project (PSD, documentation, etc). So my two svn projects are named as such: example.com branches tags trunk example.com_Project As

[jQuery] Help with node navigation

2007-06-20 Thread exlibris
Greetings, I am learning jquery and have found it a great time saver so far. I am building a thesaurus application but am having trouble with Xpath expressions used to parse an XML document returned by an ajax query. The XML that gets returned is in this format (truncated):

[jQuery] [off-topic] how do you guys organize your project folders?

2007-06-20 Thread Gilles (Webunity)
Hi guys, i was fiddling today with one of my newer projects, and i was wondering how you guys organize things. Right now i have this structure (all based on mainly website development) Customer name --\ --\ develop --\ Assets --\ Text --\ --\ --\ final

[jQuery] validate.js errors

2007-06-20 Thread [EMAIL PROTECTED]
I'm working with the validate.js plug-in from Jorn. I can't seem to get it to work, and was wondering if anyone else has had any issues. This is what I have: http://admissionstest.unl.edu/daily_visit/schedule/?type=High%20School%20Senior (code below) In firebug, I get an error: Window schedule h

[jQuery] Re: Help with stopping event propagation.

2007-06-20 Thread Josh Nathanson
I had to do kind of a hack when I tried to stop propagation...here's how I did it, maybe it will help you. $(".togglecell").click(function(e) { var tag = (e.target) ? e.target.tagName : e.srcElement.tagName; if (tag == 'TR') { // do your click stuff here } }); -- Josh - Original Messag

[jQuery] Re: Help with stopping event propagation.

2007-06-20 Thread barophobia
I don't quite understand. As you can see in the code I posted, there are no submit buttons in the that has the event bound to it so I'm not sure what your example is trying to show me. Are you suggesting that I need to specifically negate the action of an event on everything that I don't want i

[jQuery] Re: Need help with a jQuery Conflict

2007-06-20 Thread AJ
I found a way to work around it. Mike's comment about the IndexTools code maybe taking over some link handlers got me thinking. In the chance this helps someone else someday, here is what my links look like: File Number 5 etc, etc... Here is the jQuery I started with: $j("#filelist a").click

[jQuery] Re: Selectors & Context

2007-06-20 Thread Jörn Zaefferer
> Doh! Thank you... No problem :-) -- Jörn Zaefferer http://bassistance.de

[jQuery] Re: Selectors & Context

2007-06-20 Thread Jonathan Sharp
On 6/20/07, Jörn Zaefferer <[EMAIL PROTECTED]> wrote: Jonathan Sharp wrote: > On 6/20/07, *Jörn Zaefferer* <[EMAIL PROTECTED] > > wrote: > > > Jonathan Sharp wrote: > > I have the following: > > > > $('').find('.foo').doSomething(); > Why not simply

[jQuery] Re: Selectors & Context

2007-06-20 Thread Jörn Zaefferer
Jonathan Sharp wrote: On 6/20/07, *Jörn Zaefferer* <[EMAIL PROTECTED] > wrote: Jonathan Sharp wrote: > I have the following: > > $('').find('.foo').doSomething(); Why not simply this? Well, the actual implementation is a little more complex. Bu

[jQuery] Re: Event Bubbling

2007-06-20 Thread Benjamin Sterling
Christian, I guess I just don't understand the issue. When I need to use a button/link for multiple function I do something like what I posted before and all is fine. Can you explain or show in what context your code will be in? [code] $('#link').click(function(){ sayHi(); }); sayHi = function

[jQuery] Re: Selectors & Context

2007-06-20 Thread Jonathan Sharp
On 6/20/07, Jörn Zaefferer <[EMAIL PROTECTED]> wrote: Jonathan Sharp wrote: > I have the following: > > $('').find('.foo').doSomething(); Why not simply this? Well, the actual implementation is a little more complex. But basically it can be expanded to: $('').foo().bar(); $.fn.foo = functi

[jQuery] Re: Selectors & Context

2007-06-20 Thread Jörn Zaefferer
Jonathan Sharp wrote: I have the following: $('').find('.foo').doSomething(); Why not simply this? $('').doSomething(); -- Jörn Zaefferer http://bassistance.de

[jQuery] Re: $(document).unbind('ready');

2007-06-20 Thread Michael Geary
.ready isn't really an event, it's all special case code. Instead of trying to unbind a function, you could set a flag and test it in the function in question. But what it is you're really trying to do? I don't see exactly what the goal is here. -Mike _ From: jquery-en@googlegroups

[jQuery] Selectors & Context

2007-06-20 Thread Jonathan Sharp
I have the following: $('').find('.foo').doSomething(); This only works if I wrap my element in another div: $('').find('.foo').doSomething(); I've tried: $([]).add('').find('.foo').doSomething(); Thoughts? -js

[jQuery] Re: Validate.js problem

2007-06-20 Thread Jörn Zaefferer
BJ Clark wrote: exception occured when checking element , check the 'validate' method That gives you a good idea about the problem. There is no validation method called "validate". Seems like your setup has a problem. Check the docs and demo pages for examples on how to setup validation rules

[jQuery] Re: blockUI - blocking an element, with dialog

2007-06-20 Thread rolfsf
Thanks for checking in, Mike! Another question - when I try to update the message after clicking on the "yes" button, for example while completing an ajax function, it's currently appearing on top of the #question div (still working off your example). Do I need to change something if I'm blockin

[jQuery] $(document).unbind('ready');

2007-06-20 Thread Jim M
Is it possible to unbind functions from the $().ready() event? I have scripts that do this: $(document).ready(function(){ /* make things happen */ }); $().ready(fnRef); In a following script I'd like to unbind these and have tried the following, problem is it doesn't seem to work: $().unbind(

[jQuery] Could anyone send me a copy of Catfish Advert Plugin 1.3.

2007-06-20 Thread Logan Cai
Could anyone send me a copy of Catfish Advert Plugin 1.3. its official site is offline now. I am developing another Jquery based Open Source Project - Ajax Form Builder, need it ASAP. thanks in advance. Logan Cai http://www.phpletter.com -- View this message in context: http://www.nabble.com/C

[jQuery] Re: NEWS: iPhone Browser Capabilites Released

2007-06-20 Thread Dan G. Switzer, II
>If I had to guess, I'd say it'd be something more like: > >Call me! Consider that Apple's big push has been that it's just a normal version of Safari and that "it's just the web", I'd think it would be done in a non-intrusive behind-the-scenes way... That's why I guessed it was just running a r

[jQuery] 3 related selects with jquery and ajax

2007-06-20 Thread Web Specialist
Hi all. I'm looking an example about how to use a three related selects with jquery and Ajax. Do you know anyone? Cheers.

[jQuery] Re: json-in-script and getJSON

2007-06-20 Thread Michael Geary
getJSON won't work, but my JSON plugin will. It's designed for this kind of cross-domain use: http://mg.to/2006/01/25/json-for-jquery -Mike _ From: it won't work! getJSON uses ajax... ajax can't go to another site. On 6/20/07, LVCHEN <[EMAIL PROTECTED]

[jQuery] Re: NEWS: iPhone Browser Capabilites Released

2007-06-20 Thread John Resig
If I had to guess, I'd say it'd be something more like: Call me! --John On 6/20/07, Dan G. Switzer, II <[EMAIL PROTECTED]> wrote: >Is there any place that actually states what this new "make a call" >protocol/link structure is? My guess is they may just do some automatic regex parsing of th

[jQuery] Re: $.post() response dataType

2007-06-20 Thread Karl Swedberg
On Jun 20, 2007, at 3:07 PM, besh wrote: Hi, is $.post() always returning string as response data? $.post(url, { param1: value, param2: value }, function(data) { alert(typeof data); --> string } Even if the data is JSON? Do I have to use $.ajax() instead? Thanks for your help. Bohdan

[jQuery] Re: NEWS: iPhone Browser Capabilites Released

2007-06-20 Thread Dan G. Switzer, II
>Is there any place that actually states what this new "make a call" >protocol/link structure is? My guess is they may just do some automatic regex parsing of the output stream. Some other pocket browsers do this automatically. I know Pocket Outlook does this for phone numbers in an e-mail messag

[jQuery] Re: Event Bubbling

2007-06-20 Thread Christian
On Jun 20, 2:09 pm, Christian <[EMAIL PROTECTED]> wrote: > Thanks for the suggestion, but still no dice. Well, I am working around this in a somewhat hackish way... var sayhi = function(e) { alert('hi'); e.halt = true; $('#mybutton').click(saybye);

[jQuery] $.post() response dataType

2007-06-20 Thread besh
Hi, is $.post() always returning string as response data? $.post(url, { param1: value, param2: value }, function(data) { alert(typeof data); --> string } Even if the data is JSON? Do I have to use $.ajax() instead? Thanks for your help. Bohdan

[jQuery] Re: Event Bubbling

2007-06-20 Thread Christian
On Jun 20, 3:05 pm, "Jake McGraw" <[EMAIL PROTECTED]> wrote: > Have you tried toggle? [snip code] > May not be exactly what you were looking for... Yeah, not quite. Once the button is clicked, the handler should not change again until it is expressly set to something else by another event. Th

[jQuery] Re: blockUI - blocking an element, with dialog

2007-06-20 Thread Mike Alsup
got it... need to use .unblock instead of .unblockUI Glad you found the solution. I was just about to ask what exactly wasn't working! Cheers! Mike

[jQuery] Re: blockUI - blocking an element, with dialog

2007-06-20 Thread rolfsf
got it... need to use .unblock instead of .unblockUI rolfsf wrote: > > I'm playing around with blockUI, and have it working fine based on the > examples. However, I want to block an element on the page ('div#foo') and > display a dialog with a couple buttons. My attempts keep missing the mark

[jQuery] Re: NEWS: iPhone Browser Capabilites Released

2007-06-20 Thread Tane Piper
10mb? Afaik, this phone doesn't even use 3G, let alone EDGE - that's gonna be slow on a GRPS connetion. On 6/20/07, Rey Bango <[EMAIL PROTECTED]> wrote: Hi guys, I just picked this up from Ajaxian. While its not jQuery specific, I think its important info for those thinking about developing

[jQuery] Re: Event Bubbling

2007-06-20 Thread Jake McGraw
Have you tried toggle? $(function(){ $("#mybutton").toggle(function(){ alert("hello"); },function(){ alert("goodbye"); }); }); May not be exactly what you were looking for... - jake On 6/20/07, Christian <[EMAIL PROTECTED]> wrote: On Jun 20, 1:57 pm, "Benjamin Sterling" <[EMAIL PRO

[jQuery] Re: NEWS: iPhone Browser Capabilites Released

2007-06-20 Thread Shelane
Is there any place that actually states what this new "make a call" protocol/link structure is? On Jun 20, 11:56 am, "Andy Matthews" <[EMAIL PROTECTED]> wrote: > TEN MEG maximum page size? That's freaking HUGE. No wonder Apple's bumping > up the page sizes on their site. They probably used the un

[jQuery] Re: NEWS: iPhone Browser Capabilites Released

2007-06-20 Thread Andy Matthews
TEN MEG maximum page size? That's freaking HUGE. No wonder Apple's bumping up the page sizes on their site. They probably used the uncompressed versions of Prototype and Scriptaculous on PURPOSE so that they could test this. -Original Message- From: jquery-en@googlegroups.com [mailto:[EM

[jQuery] blockUI - blocking an element, with dialog

2007-06-20 Thread rolfsf
I'm playing around with blockUI, and have it working fine based on the examples. However, I want to block an element on the page ('div#foo') and display a dialog with a couple buttons. My attempts keep missing the mark. It's sort of a hybrid of these two examples: http://malsup.com/jquery/block/

[jQuery] NEWS: iPhone Browser Capabilites Released

2007-06-20 Thread Rey Bango
Hi guys, I just picked this up from Ajaxian. While its not jQuery specific, I think its important info for those thinking about developing for the iPhone. Here's the breakdown: * 10MB max html size for web page * Javascript limited to 5 seconds run time * Javascript allocations limited to 10M

[jQuery] Re: json-in-script and getJSON

2007-06-20 Thread Ⓙⓐⓚⓔ
it won't work! getJSON uses ajax... ajax can't go to another site. On 6/20/07, LVCHEN <[EMAIL PROTECTED]> wrote: I am doing some hack for blogger. Blogger API has offered JSON feed for user to load recent posts. This allows you to query a blog's public feed and get the resulting entries retu

[jQuery] Re: Validate.js problem

2007-06-20 Thread BJ Clark
Jorn: Thanks, I was using an old version. I've updated my code: $("#order").validate({ errorContainer: $("#messagebox"), errorLabelContainer: $("p", "#messagebox"), debug: true }); H

[jQuery] Re: Event Bubbling

2007-06-20 Thread Christian
On Jun 20, 1:57 pm, "Benjamin Sterling" <[EMAIL PROTECTED]> wrote: > Christian, > I am not a 100% on what Event Bubbling is, I searched it, but still no real > idea. Yeah, I think I misnamed this thread :-( It really isn't bubbling as the two event handlers are bound to the same event of the sam

[jQuery] json-in-script and getJSON

2007-06-20 Thread LVCHEN
I am doing some hack for blogger. Blogger API has offered JSON feed for user to load recent posts. This allows you to query a blog's public feed and get the resulting entries returned as JSON objects. The way to use the new JSON feed is creating a script element whose src value is http://blogname

[jQuery] Re: Works with not() but not with filter()

2007-06-20 Thread Gordon
I'm trying to optimize some code that currently works by having one function add a class to elements that meet certain criteria and another function that applies effects to them based on the classes attached. I found that adding and removing classes was relatively slow so instead I want to build

[jQuery] Re: Validate.js problem

2007-06-20 Thread Jörn Zaefferer
BJ Clark wrote: Can anyone give me some suggestions? For a start, it looks like you are using a rather old version of the validation plugin. If so, please give 1.0 a try: http://bassistance.de/jquery-plugins/jquery-plugin-validation/ The class="$v(required)" syntax was used by one of the very

[jQuery] Re: Event Bubbling

2007-06-20 Thread Benjamin Sterling
I just found this: http://www.quirksmode.org/js/events_order.html Down the page it has this: window.event.cancelBubble = true On 6/20/07, Benjamin Sterling <[EMAIL PROTECTED]> wrote: Christian, I am not a 100% on what Event Bubbling is, I searched it, but still no real idea. But I am assumi

[jQuery] Re: Help with jquery autocomplete

2007-06-20 Thread Jörn Zaefferer
RC wrote: I am using the jquery autocomplete code and have set the minChars after which the autocomplete request is fired to 3. It works fine if all 3 chars are letter (eg: abc) but fails to show the results when I use a dot or space as the third character(eg: st.). Any suggestions on how this c

[jQuery] Re: Errors on page??

2007-06-20 Thread Ⓙⓐⓚⓔ
uncaught exception: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIDOMNSHTMLDocument.execCommand]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: http://en.xpogames.com/ :: :: line 82" data: no] or the non jQuery code error from /

[jQuery] Re: Event Bubbling

2007-06-20 Thread Benjamin Sterling
Christian, I am not a 100% on what Event Bubbling is, I searched it, but still no real idea. But I am assuming you can do something like: var sayhi = function(e) { alert('hi'); e.stopPropagation(); // also tried $('mybutton').unbind() $('#mybutton').unbind('cl

[jQuery] Re: validator.getLength is not a function

2007-06-20 Thread Jörn Zaefferer
Oddish wrote: I just upgraded the validation plugin to 1.0 final from beta 2 and now I get this on one of my forms: Error: jQuery.validator.getLength is not a function The line where the error occurs is the second of the three lines below: jQuery.validator.addMethod("validPhoneNr", function(v

[jQuery] Re: Event Bubbling

2007-06-20 Thread Christian
On Jun 20, 1:44 pm, "Jake McGraw" <[EMAIL PROTECTED]> wrote: > Tried, return false in "sayhi"? Yep, no dice. Thanks for the suggestion though. Christian

[jQuery] Re: Event Bubbling

2007-06-20 Thread Jake McGraw
Tried, return false in "sayhi"? - jake On 6/20/07, Christian <[EMAIL PROTECTED]> wrote: Hi, First off, I really like jQuery - coming from MochiKit, it is nice to have such a well put together library. So here is my question: does anyone know how to stop event bubbling in IE6? I want to bin

[jQuery] Validate.js problem

2007-06-20 Thread BJ Clark
Hello, I'm using the validate.js plugin. I am using the following code: $("#order").validate({ errorLabelContainer: $("#messageBox"), wrapper: "p", debug: true }); When my form has

[jQuery] Event Bubbling

2007-06-20 Thread Christian
Hi, First off, I really like jQuery - coming from MochiKit, it is nice to have such a well put together library. So here is my question: does anyone know how to stop event bubbling in IE6? I want to bind a new handler for an event on an element inside of the initial handler. Here is some test

[jQuery] Re: Works with not() but not with filter()

2007-06-20 Thread John Resig
Can you provide an example of the code? I'm not sure what you're trying to do from your description. (If I had to guess, I'd say that you're trying to pass an element to filter, but I'm not sure why.) --John On 6/20/07, Gordon <[EMAIL PROTECTED]> wrote: If I build up a list of elements by pus

[jQuery] Works with not() but not with filter()

2007-06-20 Thread Gordon
If I build up a list of elements by pushing elements retrieved getElementById onto an array and pass it to not() I can use this list to filter out elements I don't want. But when I try the same thing with filter() I get an error message: t.substring is not a function http://localhost/js/jquery/j

[jQuery] Re: Add() bug?

2007-06-20 Thread Gordon
Okay, thanks for the explanation. Could somebody please add a note to the documentation about that? On Jun 20, 5:49 pm, "John Resig" <[EMAIL PROTECTED]> wrote: > .add() isn't destructive - calling it does not modify the original > object (so, it's unlike an array's .push(), for example). Therefo

[jQuery] Re: Add() bug?

2007-06-20 Thread John Resig
.add() isn't destructive - calling it does not modify the original object (so, it's unlike an array's .push(), for example). Therefore to get your second example working you'd have to do: var test = $('form'); test = test.add ('li'); console.log (test); --John On 6/20/07, Gordon <[EMAIL PROTEC

[jQuery] Add() bug?

2007-06-20 Thread Gordon
I wanted to create an empty jQuery object and add elements to it for later use but I couldn't get it to work. Eventually I started experimenting and discovered the following: var test = $('form').add ('li'); console.log (test); will return a jQuery object containing a list of forms plus a list

[jQuery] Re: need hellp with .get and json

2007-06-20 Thread Christopher Jordan
you say that json returns: {"statusmsg":"1","errmsg":"0","desiredurl":"dsfandsdfdsf-ds"} is that right? is the problem that you don't know how to access what is being returned? If that's the case then you'll need to eval what comes back. So lets say that: var myReturnString = {"statusmsg":"

[jQuery] Re: Interface TransferTo

2007-06-20 Thread cfdvlpr
Did you ever get this function working? I'm having trouble with it as well. Is this the right syntax? $('#elem').TransferTo( { duration: 500, to: 'elem' } );

[jQuery] Re: Need help with a jQuery Conflict

2007-06-20 Thread Geoffrey Knutzen
I had some troubles with jquery and Omniture a while back. I wasn't the one who solved the problem and that dev has moved on. Sorry I can't be of more help, but I do feel your pain. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of AJ Sent: Wednesd

[jQuery] Re: Need help with a jQuery Conflict

2007-06-20 Thread AJ
> just a quick thought, have tried to include the IndexTool via the > dynamically adding of a script-tag to your page? something like this: No dice. The conflict remains. Thanks for the suggestion, though.

[jQuery] Re: Read PARAM from Object

2007-06-20 Thread Scott Sauyet
Rui Costa wrote: well, at the right side of the wmv video, there are a list of videos, and i need to click, and change de source of the video and start to play, I have no experience with embedded media. You might want to check out: http://jquery.com/plugins/project/media Another though

[jQuery] Re: Adding custom selectors via a plugin

2007-06-20 Thread Glen Lipka
There is a moreSelectors plugin. Use it as an example of how to extend. http://dev.jquery.com/wiki/Plugins/MoreSelectors Glen On 6/20/07, Felix Geisendörfer <[EMAIL PROTECTED]> wrote: Hi folks, Is it possible to add custom selectors to jQuery via a plugin? I'd basically just need to rewrite

[jQuery] Re: Need help with a jQuery Conflict

2007-06-20 Thread John Farrar
Seriously, have you checked with this vendor for a solution? Mike Alsup wrote: I don't see any reason for there to be a conflict with jQuery directly but perhaps your code is somehow being subverted by the indextools script. Indextools defines a lot globals as well as an onload handler that a

[jQuery] Re: Need help with a jQuery Conflict

2007-06-20 Thread Marc Jansen
Hi AJ, just a quick thought, have tried to include the IndexTool via the dynamically adding of a script-tag to your page? something like this: var s=document.createElement('script'); s.setAttribute('src', '[jQuery] Re: Read PARAM from Object
so far so good. i'm getting the solution i need. well, at the right side of the wmv video, there are a list of videos, and i need to click, and change de source of the video and start to play, so i try this: $("#mediaPlayer [EMAIL PROTECTED]")[0].value = $("#" + this.id).attr('title'); // it's t

[jQuery] Re: Need help with a jQuery Conflict

I don't see any reason for there to be a conflict with jQuery directly but perhaps your code is somehow being subverted by the indextools script. Indextools defines a lot globals as well as an onload handler that adds click handlers to every link in the document. Maybe that's the source of the

[jQuery] Re: Need help with a jQuery Conflict

For what it's worth, here is the script that needs loaded: http://stats.indexstats.com/ittc3/10001388955232/stats.indexstats.com/tracking.js

[jQuery] Errors on page??

hey, i done firebug on my site ( www.xpogames.com www.xpogames.com ) and i noticed that all the error (atlast, what the firebug says) comes from the jquery.js, i removed the old version that i had (i tought mabye this is the problem) and replaced it with the lasted jquery pack.. still errors, any

[jQuery] Need help with a jQuery Conflict

Hey guys, I am using jQuery on a large site that is being tracked with a service called IndexTools (http://indextools.com). We have been having a lot of problems and tracked it down to a conflict between jQuery and the tracking.js file that IndexTools requires you embed in your pages. The proble

[jQuery] need hellp with .get and json

hey. i cannot return the parameters from json , im using .get and also in the same page i got the validation of jorn 's form (maybe its conflicts ?) herer is the code hope some1 will help json returns : {"statusmsg":"1","errmsg":"0","desiredurl":"dsfandsdfdsf-ds"}

[jQuery] Re: Read PARAM from Object

> i need to access to DATA parameter at the OBJECT tag. $("#mediaPlayer")[0].data

[jQuery] Re: Read PARAM from Object

one more thing, i need to access to DATA parameter at the OBJECT tag. what the changes to this line : $("#mediaPlayer [EMAIL PROTECTED]")[0].value; ? thks one more time

[jQuery] Re: Read PARAM from Object

you're right. what a fail thanks for this.

[jQuery] Re: create an empty jquery object

I believe it's var $emptyObj = jQuery([]); On 6/20/07, Gordon <[EMAIL PROTECTED]> wrote: Just a quick question, is there a way to quickly create a jQuery object that contains no elements at all so you can add() them as needed later in the script? -- Aaron Heimlich Web Developer [EMAIL PR

[jQuery] Re: create an empty jquery object

Gordon wrote: Just a quick question, is there a way to quickly create a jQuery object that contains no elements at all so you can add() them as needed later in the script? I suggest (although I've never tested or used it): var empty = $([]); Note that $() will include the document element

[jQuery] create an empty jquery object

Just a quick question, is there a way to quickly create a jQuery object that contains no elements at all so you can add() them as needed later in the script?

[jQuery] Re: Read PARAM from Object

Rui Costa wrote: http://www.mobiliarioemnoticia.pt/wmv/testemunhos.asp i add 2 buttons. click them. Can you try this inside an HTML page? I have no idea how JQuery is supposed to act when there is no HTML, tag, no BODY tag, etc. I don't see anything wrong other than that, but that may be

[jQuery] Re: jQuery book status?

> > The book is already available for pre-order on the publisher's site at Karl - somehow I missed your original reply but thanks for the update - and I've already pre-ordered :) Jim

[jQuery] Re: jQuery book status?

Fred, We've focused on jQuery from a user perspective, though we do describe how things are implemented when it is necessary in order to use them well. The most in-depth chapter from an implementation standpoint is the one on developing jQuery plug-ins. On Jun 20, 2007, at 9:45 , Fred Ja

  1   2   >