Okay, your reply finally showed up a day after the group said you made
it. :) I'm glad you like it, I just wish I knew how to make it work
in IE
On Jul 18, 5:17 pm, "Jonathan Sharp" <[EMAIL PROTECTED]> wrote:
> Gordon,
>
> That's really slick!
>
> -js
>
> On 7/18/07, Gordon <[EMAIL PROTECTED]>
One other thing that's bothering me about the validate plugin...
first, for the record I want to clarify that I really do like this
plugin - I find it especially useful. I am unable to have a form
object and call validate() on it more then once. For the most part
this makes sense, but I have an
To whoever replied, thanks, but the actual reply isn't showing up in
here. I don't know why! I think google groups has been a bit wonky
today.
On Jul 18, 10:32 am, Gordon <[EMAIL PROTECTED]> wrote:
> I am trying to figure out a way of displaying how far along an AJAX
> download is. Assuming I
Ok, found the problem:
Jörn has main.css and jquery.autocomplete.css in use on his demo
page. I was thinking any autocompleter-related CSS would be in
jquery.autocomplete.css, but it appears that's not the case. I had
removed main.css, but when I put it back in, the error went away.
Mousing wor
I would have to agree with Strija. Using a setTimeout() is the way
I've seen 99% of auto-complete widgets implemented.
Chris
On Jul 19, 10:14 am, batobin <[EMAIL PROTECTED]> wrote:
> Very interesting idea. So, if I understand you correctly, an AJAX
> request is only made if a person stops typing
On Jul 19, 9:13 am, jarrod <[EMAIL PROTECTED]> wrote:
> I'm trying to write a script that responds to a keyup event in any field of a
> given form. If the form is valid, the submit button of that form is enabled.
> The problem is that there are several forms on the page. My script has to
> enabl
Yes, that's correct. You are completely free to bundle jQuery with any
commercial application you choose, just leaving that notice intact
with the jQuery file itself. That's it! Enjoy :-)
--John
On 7/18/07, James <[EMAIL PROTECTED]> wrote:
So in the MIT license "software" can refer to jquery
Richard D. Worth-2 wrote:
>
>> I haven't found anywhere in the docs that talks about using this selector
>> thing $() with two arguments. What exactly is going on there?
>
>
> See http://docs.jquery.com/Core#.24.28_expr.2C_context_.29
>
> "By default, if no context is specified, $() looks fo
On 7/18/07, S. Robert James <[EMAIL PROTECTED]> wrote:
Solving the Back button problem
Is there a way to use JavaScript to detect whether a page is being
loaded for the first time (from the server), or because someone hit
the Back button? Often you want to display a status message only one,
b
On 7/18/07, jarrod <[EMAIL PROTECTED]> wrote:
I don't understand this part:
> var input = $('[EMAIL PROTECTED]', form);
Specifically this: "$('[EMAIL PROTECTED]', form);"
I haven't found anywhere in the docs that talks about using this selector
thing $() with two arguments. What exactly i
I'm setting default values for a text area on page load. This ivolves
loading a remote xml file. Should I be using the document.read()
function here. Because the "resultdiv" doesn't seem to finish load
names.xml. So none of the manipulations can happen.
function init() {
var resultdiv = $("
One suggestion, that no one has seemed to be able to tackle in the
jQuery Accordion making community, is the slight bump that happens at
the bottom of the accordion. You notice it slightly on your first
example but can see it a lot on your second example.
You'll see on the apple site there is no
Hi guys,
Some of us having difficulty figuring out as to why when applying ie6png
hack onto a link, it doesn't appear as link anymore
Can anyone help us out, here is an example www.uzhana.com - contact us link
Cheers,
--Kush
So in the MIT license "software" can refer to jquery only and no the
webapplication using it? I apologize for nitpicking this..
Thanks,
James
1 Copyright (c) 2007 John Resig, http://jquery.com/
2
3 Permission is hereby granted, free of charge, to any person
obtaining
4 a copy of this software an
I don't understand this part:
> var input = $('[EMAIL PROTECTED]', form);
Specifically this: "$('[EMAIL PROTECTED]', form);"
I haven't found anywhere in the docs that talks about using this selector
thing $() with two arguments. What exactly is going on there?
> Also may I ask why you're
Handle the click event, and change the src attribute. Something like this:
...
$(function() {
$("#mp3Img").click(function() {
$(this).attr("src", "mp3-2.jpg")
});
});
...
- Richard
On 7/18/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>
>
> Heya,
> I'd like to use jQuery to s
MIT license is what you want - just include the copyright notice and
your away laughing.
Chris
Hi Phil,
#elem1 must already have tabindex set
$(e).attr('tabindex') returns a string, so you should multiply it by 1 to
convert it to a number, otherwise #elem2 will end up with a tabindex of "11"
$("#elem2").attr("tabindex", $("#elem1").attr("tabindex")*1+1);
Cheers,
Brian.
On 7/18/07, Phi
See http://docs.jquery.com/Licensing
quote from that page:
"jQuery is currently available for use in all personal or commercial
projects under both MIT and GPL licenses. This means that you can choose the
license that best suits your project, and use it accordingly."
- Richard
On 7/18/07, James
Im using the interface plugin to change the speed of a timeout (that
the function call it again)
I follow this example to do mine: http://interface.eyecon.ro/demos/slider.html
In Firefox2 works perfect, but IE shows me an error: "The object does
not accept that property or method" (im translatin
I'm new to jQuery and would really like to be able to use it for
applying an opacity to an area on an imagemap. Is this possible? I
really don't want to swap images unless it becomes necessary. The
following code allows me to bind a click event (for testing) to the
individual "area" tags, but I
Hi all, first time I've used jQuery. I'm using it for a basic scroll
to anchor function. I started with it on the "back to top links" then
I moved to using it on a small anchor navigation at the top of the
page. It works fine in Safari on the mac and IE on the PC but for some
reason the top links
I've tried to read about this but I still am not sure. Can I bundle
jquery with a commercial web application that I distribute?
I read that if they are both distinct applications yes, but I'm not
sure where you draw the line. If the webapp utilizes jquery heavily
but can work perfectly fine witho
This subject came up recently. Search the archive for "Using part of
JQuery". The recommended solution might meet your needs?
-- Brad
On Jul 18, 6:46 am, "azzozhsn.net" <[EMAIL PROTECTED]> wrote:
> Hi,
> I really like JQuery, and I try to use it, and I think it's big script
> in some kind 22KB!
Yes - what JS code allows it to see the list of all methods (and their
source code!)?
Jack Killpatrick wrote:
> Something like this?
>
> http://www.netgrow.com.au/files/javascript_dump.cfm
>
> - Jack
>
> Robert James wrote:
> >
> >
> > Is there a way to list all the methods that a particular Java
Solving the Back button problem
Is there a way to use JavaScript to detect whether a page is being
loaded for the first time (from the server), or because someone hit
the Back button? Often you want to display a status message only one,
but not show it when they hit the Back button.
Something like this?
http://www.netgrow.com.au/files/javascript_dump.cfm
- Jack
Robert James wrote:
Is there a way to list all the methods that a particular JavaScript
object has? Or is there a tool that can do this?
Is there a way to list all the methods that a particular JavaScript object
has? Or is there a tool that can do this?
it works like a charm in opera 9.20
-GTG
On 7/17/07, Stephan Beal <[EMAIL PROTECTED]> wrote:
Hi, all!
This morning i put together a plugin which provides a basic
filemanager-like view, called BogoFolders:
http://wanderinghorse.net/computing/javascript/jquery/bogofolders/
In short, it uses
Hi, I'm using the autocomplete plugin, the one that is modification of
Dylan Verheul's jQuery Autcomplete plug-in.
It's working great but I need to disable it using any function, and I
don't know how to do it.
I've tried with unbind() ?¿ on the field but it's not working :(
Any help?
thanks!
c
>Hi dan, thaanks for replay.
>i use ff and fire baug: on my pc, i have this data from the first call:
>{"CONFORMATO":1,"COMPLETO":"84,99","TAGLIE":[43,45,47,49,51,53,55,57,59,61]
>}but
>i remember that on the intranet server i get this object prepended by
>coldfusion release, etc: cah be this the
Klaus Hartl wrote:
jarrod wrote:
I'm trying to write a script that responds to a keyup event in any
field of a
given form. If the form is valid, the submit button of that form is
enabled.
The problem is that there are several forms on the page. My script has to
enable the right one.
I hav
Maybe you want something like:
$thisSubmit = $('#myinput').parents('form').find('[EMAIL PROTECTED]"submit"]');
--Erik
On 7/18/07, jarrod <[EMAIL PROTECTED]> wrote:
Erik Beeson wrote:
>
>
>> $this = $("#myinput");
>> $thisForm = $("form",$this.parent())
>
> I didn't really read the OP, but
jarrod wrote:
I'm trying to write a script that responds to a keyup event in any field of a
given form. If the form is valid, the submit button of that form is enabled.
The problem is that there are several forms on the page. My script has to
enable the right one.
I have a way that works, but
Gordon,
That's really slick!
-js
On 7/18/07, Gordon <[EMAIL PROTECTED]> wrote:
Finally got my net access on my dev machine back. :) Here's my
code.
var myTrigger;
var progressElem = $('#progressCounter');
$.ajax ({
type: 'GET',
dataType: 'xml',
ur
It works on IE6, windows. The text is sometimes garbled though.
On Jul 17, 8:36 pm, Stephan Beal <[EMAIL PROTECTED]> wrote:
> Hi, all!
>
> This morning i put together a plugin which provides a basic
> filemanager-like view, called BogoFolders:
>
> http://wanderinghorse.net/computing/javascript/jq
I have some fields that may be generated on the fly via DOM, and want
to set the tab index. This isn't working for me:
$("#elem2").attr("tabindex", $("#elem1").attr("tabindex") + 1);
What would the correct syntax be to make the tabindex of elem2 to be
that of elem1 + 1?
On Wed, Jul 18, 2007 at 03:46:58PM +0200, Christian Bach wrote:
>> Could you please post a 'float' parser to the list? I think there was
>> one in the old tablesorter release, but unfortionatley I've deleted
>
> There is a set of experimental parser available here:
> http://lovepeacenukes.com/tabl
I have a crude demo working when I hover over a link an image above is
switched out.
How do I best store what image I want the link to swap to?
$(".showPic").hover(function() {
$("#imgLinkAct").attr("src", "images/valve_manifold.jpg");
});
The html:
Linear Actu
Erik Beeson wrote:
>
>
>> $this = $("#myinput");
>> $thisForm = $("form",$this.parent())
>
> I didn't really read the OP, but I think that's the same as:
>
> $thisForm = $('#myinput').parent().find('form');
>
> Or at that point, might as well do:
>
> $thisSubmit = $('#myinput').siblings('[
Michael,
Welcome to the list!
Your send function looks fine, except I have a few questions:
url: location.href is pointing to the current page, is this supposed to be
the case?
Since your dataType is json, you should not need to use "data =
eval(json);", if you are sending back your data, assum
$this = $("#myinput");
$thisForm = $("form",$this.parent())
I didn't really read the OP, but I think that's the same as:
$thisForm = $('#myinput').parent().find('form');
Or at that point, might as well do:
$thisSubmit = $('#myinput').siblings('[EMAIL PROTECTED]"submit"]');
--Erik
Does disabling the element for 500ms sound like a reasonable solution
to you? i'm not sure that disable makes much sense for non-buttons,
but i think that buttons will make up 90%+ of use cases.
Instead of disabling the element for 500ms just ignore any other clicks on
the element for 500ms.
On Jul 18, 2007, at 9:27 AM, Hugh Hayes wrote:
I know it's hard to support us cut-and-paste guys, there isn't a
heck of a lot that we can do for the group / jquery.
Hugh, it's really a pleasure, especially when the cut-and-paste guy
is as appreciative as you are. :-)
The plug-ins are grea
Mmmh:
$this = $("#myinput");
$thisForm = $("form",$this.parent())
-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of jarrod
Sent: jeudi 19 juillet 2007 0:14
To: jquery-en@googlegroups.com
Subject: [jQuery] Better way to select parent form?
I'm
Salvatore,
>Hi dan, you are right: on my pc, in the response tab of firebug, i have
>{"CONFORMATO":1,"COMPLETO":"84,99","TAGLIE":[43,45,47,49,51,53,55,57,59,61]
>}on
>the intranet server i getCONTENT="ColdFusion DevNet Edition - Not for Production
>Use.">{"CONFORMATO":1,"COMPLETO":84,"TAGLIE":[41
I'm trying to write a script that responds to a keyup event in any field of a
given form. If the form is valid, the submit button of that form is enabled.
The problem is that there are several forms on the page. My script has to
enable the right one.
I have a way that works, but it's complicated
Thats funny... and it is very satisfying to know that many of us face
similar problems on a daily basis :-)
-GTG
On 7/18/07, Michael Geary <[EMAIL PROTECTED]> wrote:
> > When I was working at Adobe several years ago, we had a bug
> > report that none of us could reproduce or figure out.
> >
>
Also, check out http://www.jasons-toolbox.com/JTicker/, this may help.
On 7/18/07, Benjamin Sterling <[EMAIL PROTECTED]> wrote:
>
> GC,
> It is working for me in IE6, style is off a bit, but it is working.
>
> Although you can make:
>
> $("entry/date",xmlDataSet)[i].childNodes[0].nodeValue
>
> to:
> > When I was working at Adobe several years ago, we had a bug
> > report that none of us could reproduce or figure out.
> >
> > The bug said that an unrelated window from another application
> > would pop to the front when a dialog in our app was closed.
> >
> > There actually is a similar pr
> Does anyone could combine a textarea with a Drag and Resize plugin to
> create a Resizable Textarea. (A feature like this is available in
> TinyMCE).
Did you look at the Resizables demo?
http://interface.eyecon.ro/demos
There's also http://www.jquery.info/spip.php?article44
-- Fil
azzozhsn.net wrote:
I think we can customize JQuery. I mean drop any function, class or
method we don't use.
Other responses have (correctly) questioned the need for this. But if
you want to know how, John Resig posted a message on a similar thread
not long ago:
http://tinyurl.com/2no
The name border-color is mostly a shortcut for *setting* the color of
all four borders at once.
I have never trusted the shortcut properties, I don't think they work
consistently across browsers and it seemed too difficult to make
jQuery normalize them. For widths I always get the width of each si
Stan,
>Thanks for the response. The particular page I am working with is
>used to take in registrations for a conference, a given individual
>will login and register X number of participants for their group.
>>From the primary screen they have the ability to add new registrations
>or update exis
I've already got the first part of this working:
$(function(){
$('div#rightShoppingCartButton').click(function(){
showCart(this);//Shopping cart div has been clicked
});
});
function showCart(div){
var rsccb = "#rightShoppingCartContainsBox";
if($
I´m with a problem to sorter a text column, don´t sorte correctly
I have to add a parser? If yes, how?
On 7/18/07, Christian Bach <[EMAIL PROTECTED]> wrote:
> Could you please post a 'float' parser to the list? I think there was one
in the old tablesorter
> release, but unfortionatley I've de
Very interesting idea. So, if I understand you correctly, an AJAX
request is only made if a person stops typing for 300 milliseconds?
It's not the perfect solution since receiving results is now delayed
an extra 300ms. And there's still a chance for choppy results if a
person is on a very bad int
Hi,
Take a look to this article :
http://www.jquery.info/spip.php?article44
and
http://www.jquery.info/IMG/html/44_resizehandler.html
Sorry it's in French but i think the code lines are talking by
themselves. :)
Jay
Mark a écrit :
> Does anyone could combine a textarea with a Drag and Resize
John,
Here is a post from John Resig regarding making your own copy of jquery:
You can download jQuery from SVN and build your own copy. If you were
to open the Makefile that's included with jQuery you'd see a list of
files that are to be included in jQuery directly - you can then remove
the Aja
GC,
It is working for me in IE6, style is off a bit, but it is working.
Although you can make:
$("entry/date",xmlDataSet)[i].childNodes[0].nodeValue
to:
$("entry:eq("+i+")/date",xmlDataSet).text();
$("entry/pb",xmlDataSet)[i].childNodes[0].nodeValue
to
$("entry:eq("+i+")/pb",xmlDataSet).tex
This code works well for me except that it disables the other links on
my page. What can I do to fix this?
If you are outputting JSON from CF you need to first make sure you are
actually outputting JSON from the CFC / CFM page. There is a special
technique to doing this from CFCs. The default return of a CFC is WDDX.
To test your CFC call the method from the URL without jQuery. Directly
from the ur
Hi list,
today at work i had to build a news ticker based on XML (Ajax).
I'm "sponsoring" jquery so much that they told me: ok let's see what
jquery can do.
And voilà, i ended up with this "experiment":
http://www.gcmingati.net/wordpress/wp-content/lab/jquery/newsticker/
The problem is that this
Heya,
I'd like to use jQuery to swap out an image of a mp3 player when
the user clicks the image... any ideas?
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
"jQuery (English)" group.
To post to this group, se
Hey Jake,
I am trying to make progress on this easebox thing.
A friend helped me some, but his OOP is really limited.
Can you possibly look at the code and tell us what you think?
I thought it would be easy, but it's turning into a bigger project.
http://www.commadot.com/jquery/easebox/ben2.htm
Another thing, I did also notice that I can mouse on and off the first
item with no problem, but when I move to the second item I get the
error.
On Jul 18, 10:09 am, Jeff Fleitz <[EMAIL PROTECTED]> wrote:
> I am in the same boat (don't have the luxury of playing around).
> Jörn's version has been
On 7/17/07, Mark <[EMAIL PROTECTED]> wrote:
Does anyone could combine a textarea with a Drag and Resize plugin to
create a Resizable Textarea. (A feature like this is available in
TinyMCE).
Did you look at the Resizables demo?
http://interface.eyecon.ro/demos
Hi dan, you are right: on my pc, in the response tab of firebug, i have
{"CONFORMATO":1,"COMPLETO":"84,99","TAGLIE":[43,45,47,49,51,53,55,57,59,61]}on
the intranet server i getCONTENT="ColdFusion DevNet Edition - Not for Production
Use.">{"CONFORMATO":1,"COMPLETO":84,"TAGLIE":[41,43,45,47,49,51
im pretty new to jquery and im writing a ajax ready comment box for my
community site. Im very new to javascript but got into frameworks
reading about javascript along the way and i wanted to know if im
going about my send function in the right fashion?
function send(){
var conf
If you have ability too, you should really enable HTTPCompression. If you
use HTTPCompression and jquery.min.js the file size will only be a little
over 10k. Not to mention the rest of your page will also decrease in file
size.
--
Brandon Aaron
On 7/18/07, azzozhsn.net <[EMAIL PROTECTED]> wrote:
Dan,
Thanks for the response. The particular page I am working with is
used to take in registrations for a conference, a given individual
will login and register X number of participants for their group.
>From the primary screen they have the ability to add new registrations
or update existing on
Considering Prototype alone is 94.1 KB (and they don't even offer it
compressed - that takes it down to only 57.6 KB) I think 22kb is VERY
small for what your get here in jQuery.
Consider for that 22kb you get:
* AJAX Functionality
* Animated Effects
* Behaviors
* CSS Manipulation
and much, much
Finally got my net access on my dev machine back. :) Here's my
code.
var myTrigger;
var progressElem = $('#progressCounter');
$.ajax ({
type: 'GET',
dataType: 'xml',
url : 'somexmlscript.php' ,
beforeSend : function (t
Yes, but look at Jörn's demo site (http://jquery.bassistance.de/
autocomplete/) and you'll see that this error does not occur. It's
got to work with the mouse or it is unusable for me. Unfortunately,
no one has chimed in with a solution and I'm so new to JQuery that I
don't think I can solve thi
There are much more valuable things the creators can do than to piece
out and debug fractional distributions of jQuery. What type of traffic
are you getting and what is the situation that a smaller size would be
noticed by the user or make your server load less burdened? I have seen
people ad
That's what I was afraid of. I thought I saw somewhere that they
changed it to take a dom element instead of an id, but that didn't
work for me.
I'll have to figure something out. Thanks for the response!
On Jul 18, 6:07 am, Dave Probert <[EMAIL PROTECTED]> wrote:
> Assuming you mean the Inter
I haven't tested this, but it looks similar to the issue (and solution) in
this thread:
http://www.nabble.com/I-thought-I-understood-threads...-tf4096371s15494.html
You may want to do a small setTimeout to launch the confirm dialog to give
the browser a chance to render the row highlight.
- Ric
I am in the same boat (don't have the luxury of playing around).
Jörn's version has been pretty stable, with the exception of the
issues documented. The one problem I have is similar to yours, in that
IE6 generates an error when mousing over.the selection list.
Unfortuanely, at least 90% of the us
Okay, I've got some code now that works well in all the major browsers
except for IE. I can't post the code just now but I'll put it up as
soon as I get proper net access back on the other computer. Oddly it
doesn't throw any errors in IE, it simply doesn't produce any
results.
Gordon wrote:
>
Could you please post a 'float' parser to the list? I think there was one
in the old tablesorter
release, but unfortionatley I've deleted it.
There is a set of experimental parser available here:
http://lovepeacenukes.com/tablesorter/2.0/jquery.tablesorter.parsers.js
I haven't had the time to
Hi dan, thaanks for replay.
i use ff and fire baug: on my pc, i have this data from the first call:
{"CONFORMATO":1,"COMPLETO":"84,99","TAGLIE":[43,45,47,49,51,53,55,57,59,61]}but
i remember that on the intranet server i get this object prepended by
coldfusion release, etc: cah be this the prob
>What's the rationale behind the validate plugin only handling one
>jQuery object? This doesn't seem consistent with how jQuery works at
>all.
The validator() object breaks the jQuery chain and returns a reference to
the current validator object. This allows you to build code to interact with
th
Is nobody else having the problem of when youhover one of the sliding
tabs it totally dissappears for the better portion of a second.
On subsequent hovers over the same tab, after you would think the
image had loaded or whatever the glitch is, still the long delay.
This is with Firefox on windows
Hi!
I am using a little jquery accordion menu, and a photo gallery in lightboxv2...
As you can see in http://naosweb.com.ar/obras.html
the accordion is not working, and looks "expanded"...
This is how it have to work http://naosweb.com.ar/quienes-somos.html
What can I do to use both scripts with
Christian Bach wrote:
> Thanks, when the final version is released it will include more parser
> and contributed parsers as a optional file.
Could you please post a 'float' parser to the list? I think there was one in
the old tablesorter
release, but unfortionatley I've deleted it.
I also t
Salvatore,
>i'm developing an intranet order application using many ajax calls; this
>app is fine on my pc intel pIV-2800 Mhz based, and on the internet, but
>when i try to install in on the server on the intranet, it fails.
>this server has an amd athlon x64 4400+, with 2Gb RAM.
>if tou test htt
Hi all,
i'm developing an intranet order application using many ajax calls; this app is
fine on my pc intel pIV-2800 Mhz based, and on the internet, but when i try to
install in on the server on the intranet, it fails.
this server has an amd athlon x64 4400+, with 2Gb RAM.
if tou test http://www.
Chris,
>I am trying to make a plugin that will be used to generate a password.
>After many days of deliberation I decided to call it
>generate_password(). Now that I've got the name out of the way I'm
>having a bit of trouble getting it to work right.
>
>You can see the behavior here:
>
>http://w
QuEz,
Glad that helped a bit, but I just realized that my code will give you an
error, try the below instead:
.css({
color:'red',
fontStyle:'italic',
fontWeight:'bold'
})
On 7/18/07, quez <[EMAIL PROTECTED]> wrote:
Hey Benjamin, you're the man! works like a charm. Just tried it after
getting
King Karl-
Success!
It ended up being:
/* ');
}
var this
Hi,
I really like JQuery, and I try to use it, and I think it's big script
in some kind 22KB! the rest of my page less than 12K. I think we can
customize JQuery. I mean drop any function, class or method we don't
use. I hope the developer make a program show this methods, classes or
functions then
Hi Jiming,
Thanks for the feedback. I forgot to check out your site last night
and now I'm behind my over-aggressive firewall again. Do you
experience the CPU spike when viewing my demo pages?
http://malsup.com/jquery/block/
Mike
On 7/18/07, Jiming <[EMAIL PROTECTED]> wrote:
Hi Mike,
I t
Jiming,
Did you try increasing the size of all background images having transparent
pixels?
-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Jiming
Sent: mercredi 18 juillet 2007 10:51
To: jQuery (English)
Subject: [jQuery] Re: blockUI plugins
ehm.. silly me. I didn't know that there was something like
"this.form".
> By the way, the selector "input.textField" will perform better than just
> ".textField".
Does that read ':input.textfield' or 'input.textfield' or is there no
difference anymore?
-- Gilles
Assuming you mean the Interface resizables, there is no way yo do so
without recoding the library. It hardcodes the ID's for the resize
blobs - this is Very Bad.
The only way I could get around this was to add or remove the resize
blobs when I click (and/or choose to edit) on an item. But this
$('.textfield').each(function() {
var form = this.form;
});
On 7/18/07, Gilles (Webunity) <[EMAIL PROTECTED]> wrote:
Let's say i have this construction:
And i have this query
$('.textfield').each(function() { ... });
How do i find the parent form?
a) jQuery('form').contains(this);
I have been thinking about how to do this all morning. At first I
thought it wouldn't be possible because the XHR object doesn't seem to
have a property for the amount of data downloaded. But I have come up
with a possible work around. I have jotted some pseudocode down and
am researching how w
Gilles (Webunity) wrote:
Let's say i have this construction:
And i have this query
$('.textfield').each(function() { ... });
How do i find the parent form?
a) jQuery('form').contains(this);
b) jQuery(this).parents('form').. ?
What is the best and fastest way?
I'm sure the fastest way
Let's say i have this construction:
And i have this query
$('.textfield').each(function() { ... });
How do i find the parent form?
a) jQuery('form').contains(this);
b) jQuery(this).parents('form').. ?
What is the best and fastest way?
Hi Kia,
I've tried the encode option, but get this strange error:
Updated the "packed" script and it now works.
Also, I've created these parsers (might be useful for someone). Maby you
should make custom parsers
available at your hompepage?
Thanks, when the final version is released it wil
1 - 100 of 124 matches
Mail list logo