i guess, his windows config was set to double click when a single-click is
executed and since the dialog closes on the first click, the page
underneath gets the second click which probably opens up a popup.. Just a
theory... :-)
-GTG
On 7/17/07, Michael Geary <[EMAIL PROTECTED]> wrote:
>
> There actually is a similar problem that Windows apps can run
> into if they close dialogs in the wong way. But I knew we
> weren't doing that, and we couldn't repro the bug at all.
Proofread, Geary, proofread. Obviously "wrong", especially after that second
glass of wine. :-)
And Resig says
Lol, i still have friends and relatives that double click everything... Ive
seen this scenario play out a couple times.. When the X button is over an ad
or something.. :(
On 7/18/07, Michael Geary <[EMAIL PROTECTED]> wrote:
> >Now that i think about it, i'm constantly saying to my g/f, "don't
Sweet! Even though they are still using document[something] in alot of
places (namely, f_standard_js.js), they seem to be making good use of
jQuery!
On 7/18/07, Quin Hoxie <[EMAIL PROTECTED]> wrote:
Just noticed that American Eagle's website ae.com is using jquery.
A quick glance shows they ar
Just noticed that American Eagle's website ae.com is using jquery.
A quick glance shows they are using the form plugin, interface, and
dimensions.
Another feather in the jquery teams hat :)
> >Now that i think about it, i'm constantly saying to my g/f, "don't
> >DOUBLE-click those links! That causes two hits on the server!" as if
> >she might someday magically understand what i mean by that. :/
> I'll also confirm that my finding the majority of
> non-hardcore users tend to doubl
I am not sure if that would be considered a jquery bug, but i can try to
help u with a work around...
$('fieldset#box').slideToggle('fast',function(){
if($('input#title').is(":visible")) {
$('input#title').focus();
});
untested... but u get the idea.
-GTG
On 7/17/07, Leandro Vieira Pinho <[
So the "briefly disable" behaviour is not reliable enough for
"production use", IMO.
Hmmm, just thinking out loud here, did u try attaching a no-op function to
window.ondbclick...
-GTG
On 7/17/07, Stephan Beal <[EMAIL PROTECTED]> wrote:
On Jul 18, 2:29 am, Stephan Beal <[EMAIL PROTECTED]>
Hi, all!
The past week i've written 4 plugins and i would like to take a moment
to share a tip which i've found useful while working on them.
In each of my plugin functions i optionally create a "debugging area",
a DIV element which i use to write debug info to:
jQuery.fn.initConfirmer = functi
Hey everyone -
Here's some upcoming events in San Francisco, relating to jQuery:
SF jQuery Meetup
http://upcoming.yahoo.com/event/220122/
On July 26, we are taking the opportunity to invite everyone in the
jQuery community to meetup at the Gordon Biersch San Francisco Brewery
for drinks appeti
On Jul 18, 2:29 am, Stephan Beal <[EMAIL PROTECTED]> wrote:
> 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.
>
> ???
A bit of follow-up:
i've ad
On Jul 18, 4:38 am, "Brandon Aaron" <[EMAIL PROTECTED]> wrote:
> There aren't any yet besides what is in the main source file. There are two
> main methods: behavior and unbehavior. They are the first two methods in the
> js file and are commented (along with all the private methods). Here is the
On Jul 18, 4:51 am, "Ganeshji Marwaha" <[EMAIL PROTECTED]> wrote:
> Don't you like the idea of "click on the button", an extension slides out
> asking to confirm. When you click the "confirm" extension, you can go ahead
> with the action.
i do, but it breaks two of my rules for this plugin:
a) I
If I use this function:
...
$('fieldset#box').slideToggle('fast',function(){$
('input#title').focus();});
...
In IE 6 when we give the second click in the element, this browser
return an wrong says that it´s impossible to set the focus in an
object that isn´t visible.
So, all the functions brea
Many of you may not be aware of a news aggregator called dzone.com.
dzone is a jQuery-powered site which offers links to awesome development
postings and stories and allows you to vote for these stories in much
the same fashion as you would on Digg (also jQuery-powered). The big
difference is
i'm not a big fan of setTimeout(), partly due to its limitations
(must take a string argument, instead of a function reference)
Not true. setTimeout takes either a string or an fn ref.
Don't you like the idea of "click on the button", an extension slides out
asking to confirm. When you click the "confirm" extension, you can go ahead
with the action. This solves the problem of timeouts and it is more
intuitive to a click interface than to non-click interface like the site i
menti
There aren't any yet besides what is in the main source file. There are two
main methods: behavior and unbehavior. They are the first two methods in the
js file and are commented (along with all the private methods). Here is the
source file from SVN:
http://jqueryjs.googlecode.com/svn/trunk/plugin
On Jul 17, 8:45 pm, "Brandon Aaron" <[EMAIL PROTECTED]> wrote:
...
> The example you provide would be best written without using behavior at all.
> However this is an interesting use-case and I would like to explore it in
> more detail. Would you mind providing a complete example for me to dig
> t
On Jul 18, 3:56 am, "Dan G. Switzer, II" <[EMAIL PROTECTED]>
wrote:
> The trickiest part would be showing the user progress of the timer before
> they can click to perform the action.
>
> The problem is I'm still not sure how intuitive this behavior would be. I
> guess a clue/tool tip that explai
>Just minutes after typing the email for u, i realized that i had seen a
>pretty cool site from which your plugin can gather some inspiration. This
>site allows you to completely interact with any UI without any clicks at
>all.
>
>Along similar lines, once a user clicks the button, an extention sl
Just minutes after typing the email for u, i realized that i had seen a
pretty cool site from which
your plugin can gather some inspiration. This site allows you to
completely interact with any UI without any clicks at all.
Along similar lines, once a user clicks the button, an extention slides o
On Jul 18, 1:58 am, "Dan G. Switzer, II" <[EMAIL PROTECTED]>
wrote:
> I'll also confirm that my finding the majority of non-hardcore users tend to
> double-click. Heck, one of my previous supervisors used to double-click
> every thing on a web page.
My girlfriend does the same (and it drives me u
>> I see one problem: Many people habitually double-click everything -
>links,
>> buttons, you name it. If you double-click the button, the second click
>ends
>> up confirming it.
>
>That's an interesting point. i've been using KDE in single-click mode
>for many years, so i haven't actually double
On Jul 18, 1:43 am, "Ganeshji Marwaha" <[EMAIL PROTECTED]> wrote:
> In the demo, once i click, the action gets cancelled too quickly before i
> understand that i need to click it again... Also, i guess it is pretty
> difficult to explain this to the user...
You're right - i had the timeout delay
Stephan,
In the demo, once i click, the action gets cancelled too quickly before i
understand that i need to click it again... Also, i guess it is pretty
difficult to explain this to the user...
There should be some other way, instead of just time before which the event
is cancelled.
Just think
On Jul 18, 12:47 am, Felix Geisendörfer <[EMAIL PROTECTED]> wrote:
> Cool idea. Just add support for a class that's being added to the button
> when in 'confirm' mode - otherwise there is no way to visually highlight
> this new UI approach for the user ; ).
My initial thought was to use an onclic
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).
Thanks.
Mark
Cool idea. Just add support for a class that's being added to the button
when in 'confirm' mode - otherwise there is no way to visually highlight
this new UI approach for the user ; ).
-- Felix
--
My Blog: http://www.thinkingphp.org
My Business: http://www.fg-webdesign.de
On Jul 18, 12:40 am, "Michael Geary" <[EMAIL PROTECTED]> wrote:
> Very cool idea. Anything to get rid of confirmation dialogs!
i didn't come up with the idea myself (of course). There is/was some
mail client (can't remember which) which uses/used a similar idea when
you move a mail to the trash.
On Jul 18, 12:35 am, "Tane Piper" <[EMAIL PROTECTED]>
wrote:
> Very handy! Will be very useful for actions such as deleting. I'll
> be trying this one out.
Deleting is EXACTLY the reason i wrote it. i have an app with a
"Delete all" button and a "Confirm" checkbox next to it (because i
didn't k
Very cool idea. Anything to get rid of confirmation dialogs!
I see one problem: Many people habitually double-click everything - links,
buttons, you name it. If you double-click the button, the second click ends
up confirming it.
You could avoid this by disabling the button for a second with a "
Very handy! Will be very useful for actions such as deleting. I'll
be trying this one out.
On 7/17/07, Stephan Beal <[EMAIL PROTECTED]> wrote:
Hi again, all!
Confirmer is a plugin for jQuery which implements a novel approach to
the process of confirming an action. Normally this is achieved
Klaus, Dan, thank you for your help. I tried both ways and they worked
correctly. I think I will use the Field plugin for many things in the
future.
Thank you!
On 17 jul, 18:37, Klaus Hartl <[EMAIL PROTECTED]> wrote:
> Mike Alsup wrote:
>
> > Klaus,
>
> > As Dan pointed out, his Field plugin i
Hi again, all!
Confirmer is a plugin for jQuery which implements a novel approach to
the process of confirming an action. Normally this is achieved via a
yes/no dialog box or a button with a "confirm" checkbox next to it.
The Confirmer plugin instead sets up a single button which changes to
a "co
I switched it to this and it seems to work correctly:
$(".codeNumbersRow, .codeNumbersRowSelected").behavior('click',
function() {
var rem = "";
var add = "";
if($(this).attr('class') == "codeNumbersRowSelected") rem =
"Selected";
thanks aaron, just in case you need my email, it is ganeshread at gmail dot
com.
-GTG
On 7/17/07, Aaron Porter <[EMAIL PROTECTED]> wrote:
I'll try to package it up and make it available tomorrow.
Aaron
Ganeshji Marwaha wrote:
> Aaron,
>
> I would like the jar file... I want to integrate thi
http://www.invision-technology.com/devscope/test.php
Here you go.. I didnt take alot of time to do it, just copy pasted
some results from php. Hopefully this helps!!
Thanks for the help!!
James
On Jul 17, 1:45 pm, "Brandon Aaron" <[EMAIL PROTECTED]> wrote:
> Behavior binds the events (in thi
Great Job!!! And great design for the accordion ;D
On 7/17/07, Alexander Graef <[EMAIL PROTECTED]> wrote:
Hi,
Did some updates to the way the horizontal accordion works. You can find the
new download and example here:
http://dev.portalzine.de/index?/Horizontal_Accordion--print
I will b
Could you still send me an example of the issue you are having?
--
Brandon Aaron
On 7/17/07, Mark <[EMAIL PROTECTED]> wrote:
I've downloaded the latest version of dimensions and still having the
same problem (anyway it is working with my "combined position fix"
using position and offset in MS
I've downloaded the latest version of dimensions and still having the
same problem (anyway it is working with my "combined position fix"
using position and offset in MSIE).
On 16 jul, 01:28, "Brandon Aaron" <[EMAIL PROTECTED]> wrote:
> You can grab the latest from SVN from google code
> here:htt
ortalzine.de
__ NOD32 2402 (20070717) Information __
This message was checked by NOD32 antivirus system.
http://www.eset.com
Nicely done, thanks.
On Jul 16, 6:19 pm, Dave Methvin <[EMAIL PROTECTED]> wrote:
> On Jul 16, 5:23 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
> wrote:
>
> > I keep getting an error in the IE browsers (6 & 7).
>
> > Error: Can't move focus to the control because it is invisible,
> > not enabled,
Hi,
Did some updates to the way the horizontal accordion works. You can find the
new download and example here:
http://dev.portalzine.de/index?/Horizontal_Accordion--print
I will be moving this to a plugin for a more generic approach for version
0.6.
Enjoy
Alexander
-
Hi Hugh,
Ah, yes, looks like you're missing the line with }); that should come
right before $extLinks.appendTo('#content');
It's needed there to close the .each()
Try copy/pasting this:
http://www.helderberg-bmdc.org/scripts/jquery.js";
type="text/javascript">
/*
Behavior binds the events (in this case a click event) for you and listens
for "major" DOM modifications (such as adding an element) and binds the
events to new elements that match the selector. In your example the only
thing that changes is the class name. But lets say you made a major DOM
modifi
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 two HTML elements: one holds a list of icons/label
(e.g., the "file list") and one holds the conte
On 7/17/07, Hugh Hayes <[EMAIL PROTECTED]> wrote:
$extLinks.appendTo("#content");
)};
It looks like the right paren ) and right curly brace } here are switched.
- Richard
I added "addClass" to the behavior class, so it will recall the
behaviors when addClass is called.. but they spans start out as
".codeNumbersRow" then you click on it and it runs the function turns
it into ".codeNumbersRowSelected", but for some reason when you try
and click on it again i
I have a form with JavaScript validation. It is displayed in a Thickbox
window and pulled from an inline div (initially hidden).
For some reason, the JS form validation doesn't work. I believe it is
because the ID or NAME attribute of the form elements are being changed
somehow to create the Thi
Richard D. Worth wrote:
>>> http://docs.jquery.com/Frequently_Asked_Questions
>>
>> This is great! I think there should be a link to this from the
>> "Getting Started" list on the documentation page.
>
I don't know if you saw, but there is a link on that page (as well as
the left sidebar - all
Hello,
I've a link I'm using .show(slow) - it works fine unless I click
repeatedly fast on the link - re-clicking the link while the effect is
still running leads to weird results - is there a way to cancel the
running effect before applying the new one or what's the best way to
handle something
innovation uncovered
<http://www.portalzine.de> http://www.portalzine.de
dev.portalZINE(R) - all about development
<http://dev.portalzine.de> http://dev.portalzine.de
pro.portalZINE(R) - customized experience
http://pro.portalzine.de
__ NOD32 2402 (20070717) Informa
Hi,
Did some updates to the way the horizontal accordion works. You can find the
new download and example here:
http://dev.portalzine.de/index?/Horizontal_Accordion--print
I will be moving this to a plugin for a more generic approach for version
0.6.
Enjoy
Alexander
-
I don't know if you saw, but there is a link on that page (as well as the
left sidebar - all pages). It's not under "Getting Started", but under
"Support".
- Richard
On 7/17/07, Scott Sauyet <[EMAIL PROTECTED]> wrote:
Richard D. Worth wrote:
> New wiki page:
>
> http://docs.jquery.com/Frequen
Immediately after sending the above I think I realized what the problem
is.
Each of the numeric values in that first column is wrapped in
and you're probably sorting on that. Do I need to write a parser? If so,
what might it be?
This should work:
$.tablesorter.addParser({
id: 'genericLink',
Mike Alsup wrote:
Klaus,
As Dan pointed out, his Field plugin is very adept at getting, setting
and otherwise manipulating data for field elements and Dan is adding
new capabilities regularly. The Form plugin is mostly geared at
providing ajax capabilities for the submit process. It also pro
This looks really nice. Some feedback:
1. I expect the contents to open to the right of it's "header", not to
the left. Is that configurable? And if not, it'd be nice if you can make
it so (when you make it a plugin).
2. when clicking the header for an item that's already open, I don't see
w
ah? let me investigate further...
_
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Christian Bach
Sent: mardi 17 juillet 2007 15:41
To: jquery-en@googlegroups.com
Subject: [jQuery] Re: ANNOUNCE: tablesorter 2.0 beta released!
excellent job christian,
Thanks
Klaus,
As Dan pointed out, his Field plugin is very adept at getting, setting
and otherwise manipulating data for field elements and Dan is adding
new capabilities regularly. The Form plugin is mostly geared at
providing ajax capabilities for the submit process. It also provides
methods for ge
I add once an issue with internet explorer 6 and opacity. I was using a 1pxX1px
transparent image. CPU was turned into lava until i switched to a 200x200px
transparent image.
Hope this helps somehow
-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behal
Hmm, my corporate firewall won't let me access that site.
Something you can try is to override the opacity by setting the
overlayCSS.opacity value to 0 or 1. For example:
$.blockUI.defaults.overlayCSS.opacity = 0;
- or -
$.blockUI.defaults.overlayCSS.opacity = 1;
This will tell you if it is t
lt;http://www.portalzine.de> http://www.portalzine.de
dev.portalZINE(R) - all about development
<http://dev.portalzine.de> http://dev.portalzine.de
pro.portalZINE(R) - customized experience
http://pro.portalzine.de
__ NOD32 2402 (20070717) Information __
This message w
>> Using my Field plug-in (http://jquery.com/plugins/project/field) you
>could
>> do:
>>
>> $("#id_cliente").setValue("2");
>>
>> The big benefit to using my Field plug-in is that you can change the form
>> field from a select box to a checkbox or radio element and you would not
>> have to refacto
Hi Mike,
I am using Windows2000/XP, and browser is IE6/IE7/Firefox2.
The url you can try is http://peds2.caitco.com, this is a chinese
version, hope . Please just try it at random:)
When we using a powerful CPU, it is not a problem. For example my PC's
CPU is AMD2600+. And it only consume about
;
>
>
> dev.portalZINE(R) - all about development
>
> http://dev.portalzine.de
>
>
>
> pro.portalZINE(R) - customized experience
>
> http://pro.portalzine.de
>
>
>
>
>
--
BrightLight Development, LLC.
954-775- (o)
954-600-2726 (c
On Tue, Jul 17, 2007 at 11:01:55AM -0400, Rick Pasotto wrote:
>
> On Tue, Jul 17, 2007 at 03:04:59PM +0200, Christian Bach wrote:
> > After another late night, fixing a few bugs, the code is finally ready for
> > it's first beta release.
> >
> > The main new features include:
> > * Multi-column
Richard D. Worth wrote:
New wiki page:
http://docs.jquery.com/Frequently_Asked_Questions
This is great! I think there should be a link to this from the "Getting
Started" list on the documentation page. I don't have authorization to
edit the Main Page or whatever template is used, or I wou
Looks promising but I'm having a little problem with numeric sorting.
Here's my invocation and the table header.
$(function() { $("#listclubs").tablesorter(); });
ID#
Club Name
Area
Type
Charter
When the page first appears it is sorted the way I wrote it but if I
click
Two questions I had when starting with jQuery, and glancing through the
API docs, I still don't see them documented (maybe in a tutorial?):
(1) How do you select an element by its ID?
(2) How do you select all elements given a CSS class?
This leads to an interesting documentation question:
Ah yes...the text box is much better looking this time. Plus you resolved
that display issue with using show/hide.
Only one additional comment..I'd like to see the thing feel more responsive.
Currently you're completely closing one blade before opening another. Any
chance of closing one and openi
Apparently, I didn't have the latest version of bgiframe.
BTW, the documentation still lists the dimensions plugin as a required
plugin. This was changed, correct?
On Jul 16, 3:20 pm, Shelane Enos <[EMAIL PROTECTED]> wrote:
> For the lastest version of the autocomplete plugin
> (http://dev.jqu
Another odd behavior that seems isolated to IE. If I hover over any of
the panels prior to the page fully loading, you'll see them kind of
animate and move around.
To replicate, just do a hard refresh and as soon as you see the panels,
staty hovering over them.
Rey
Alexander Graef wrote:
p://www.portalzine.de
>
>
>
> dev.portalZINE(R) - all about development
>
> http://dev.portalzine.de
>
>
>
> pro.portalZINE(R) - customized experience
>
> http://pro.portalzine.de
>
>
>
>
>
--
BrightLight Development, LL
Thats much nicer! I tried to play about with your plugin this
morning, wasn't working very well in my layout - but I'll give it a
try once it's been made a bit more generic.
Thanks
On 7/17/07, Alexander Graef <[EMAIL PROTECTED]> wrote:
Hi,
Did some updates to the way the horizontal accor
Did the video help, Alexander?
Also, upon initial load, it appears as if the container div shifts to
the left and the reshifts to the right.
Overall, it works much better on this go round. Awesome work.
Rey
Alexander Graef wrote:
Hi,
Did some updates to the way the horizontal accordion wo
Dan G. Switzer, II wrote:
I don't know how to change the selected item in a selectbox. I tried
this but it doesn't work as expected.
HTML code:
=
-
First
Second
javascript code:
var cliente = 2;
$('#id_cliente:nth-child(cliente)').attr('selected','select
Hi,
Did some updates to the way the horizontal accordion works. You can find the
new download and example here:
http://dev.portalzine.de/index?/Horizontal_Accordion--print
I will be moving this to a plugin for a more generic approach for version
0.6.
Enjoy
Alexander
-
Hi
We have a strange problem with Thickbox 3 using Internet Explorer
http://www.cloeguitars.it/company/corso-di-liuteria-cloe
With Firefox is all OK, but if you try to open an image at the bottom
of the page Internet Explorer is unable to position the window
correctly.
The problem happens only
On Tue, Jul 17, 2007 at 03:04:59PM +0200, Christian Bach wrote:
> After another late night, fixing a few bugs, the code is finally ready for
> it's first beta release.
>
> The main new features include:
> * Multi-column sorting
> * In-line support for setting options done via the class attribute
Thank you very much, that solved the problem.
As a note, I tweaked the solution slightly and it is a bit simpler and works
just fine:
// Calculate pageX/Y if missing and clientX/Y available
if ( event.pageX == null && event.clientX != null ) {
var e = document.documentElement, b = document.bo
I have a bit of code that works just fine in Firefox but does nothing
Internet Explorer. Right now, I am using the JQuery tabs plugin, remotely
calling a page that displays various links. These links are the links that
I am using in my code. They use another page and return the results in a
DI
Hi Karl-
Thanks. I really appreciate it. I've got (I think) syntax errors. The
firefox console is telling me "missing } after function body \n" - it seems to
be the last line of the code and no matter what combination of characters I use
there. Here's what I've got:
http://www.helderberg-b
excellent job christian,
Thanks!
i have one bug to report: consider this html
if the element contains inline styles such as:
once sorted, the style is removed.
I did a quick test, and the style attribute was not removed, perhaps the
style is over-written by a css class?
Tablesorter by
>Two words: google rating
>
>As far as search engines go, reportedly most people don't look past
>the first 3 entries if they find something suitable, and the vast
>majority of people never look past the first page of results.
Maybe I'm giving jQuery Developers too much credit, but I would think
excellent job christian,
i have one bug to report: consider this html
if the element contains inline styles such as:
once sorted, the style is removed.
not a biggie, but can be annoying.
cheers!
Alexandre
_
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Hi,
This is not directly related to jQuery, but to this mailing list.
Sorry for the off-topic.
I'd like to know how did you moved the entire mailing list archives to
Google Groups. Were the messages "re-sent" or...?
I'm asking because people from another project I'm involved is
considering to m
Would you mind reposting this over on the Dev list? It would be nice to get
that bug knocked out for good already.
--
Brandon Aaron
On 7/17/07, Dan G. Switzer, II <[EMAIL PROTECTED]> wrote:
While working on a jQuery Interface project, I came across an issue with
some code using the Draggable
I'm glad to see you made the multi-column sort key configurable. My
instinct
was to use the [CTRL] key, not the [SHIFT] key (although I know Outlook
uses
the [SHIFT] key.)
Tablesorter can be configured to use either SHIFT or CTRL, all though SHIFT
is default.
Here is a example on how to change
2007/7/17, Rick Pasotto <[EMAIL PROTECTED]>:
On Tue, Jul 17, 2007 at 03:04:59PM +0200, Christian Bach wrote:
>
> The new 2.0 release can be found here:
> http://lovepeacenukes.com/tablesorter/2.0/
Interesting that the packed version is twice as large as the unpacked. :-)
Yeah, packer doesn'
On Jul 17, 2:40 pm, "Dan G. Switzer, II" <[EMAIL PROTECTED]>
wrote:
> >c) The alphabetic display of plugins rewards those authors who name
> >their plugins starting with the letter 'A', because those are the
> >first ones which users will see when browsing the list.
...
> As for Issue C, I think m
Christian,
>After another late night, fixing a few bugs, the code is finally ready for
>it's first beta release.
Looks really good. This seems much more responsive than the previous
version.
>The main new features include:
>* Multi-column sorting
I'm glad to see you made the multi-column sort
On Jul 17, 2:42 pm, PragueExpat <[EMAIL PROTECTED]> wrote:
> Apparently, in IE and Firefox, the function must run to completion before
> the UI is updated with any CSS / DOM changes, but in Opera, the UI is
> updated immediately upon the jQ call.
Yeah, someone mentioned that behaviour a couple of
>I don't know how to change the selected item in a selectbox. I tried
>this but it doesn't work as expected.
>
>HTML code:
>=
>
>-
>First
>Second
>
>
>javascript code:
>
>var cliente = 2;
>$('#id_cliente:nth-child(cliente)').attr('selected','selected');
>
>a
While working on a jQuery Interface project, I came across an issue with
some code using the Draggable library.
It turns out in IE6 the cloneNode(true) does not properly copy the current
state of all HTML elements. Checkbox, radio and select box elements all lose
their current settings.
I blogge
Screenshot from FF2 here http://www.logicbox.net/jquery/pricetable/screen.jpg
On Jul 17, 2:15 pm, "Benjamin Sterling"
<[EMAIL PROTECTED]> wrote:
> I second Erik on this, can you elaborate on your issue? Maybe send a screen
> shot of what you are getting?
On Tue, Jul 17, 2007 at 03:04:59PM +0200, Christian Bach wrote:
>
> The new 2.0 release can be found here:
> http://lovepeacenukes.com/tablesorter/2.0/
Interesting that the packed version is twice as large as the unpacked. :-)
--
"When dealing with people, remember you are not dealing with cre
Ouch rather annoyingly googlegroups ate my reply!..
Erik thanks,
I got a friend to test on FF2 on Mac OS X and he had no problems, are
you on the same platform? I think possibly it's a FF Windows issue.
To clarify this problem ive done a couple of new examples.
http://www.logicbox.net/jquery/pr
Thats a great idea Dan. I'll be glad to upload what I have. Let me talk
to John and see what he thinks.
Rey
Dan G. Switzer, II wrote:
Rey,
It was a great question. I know I've been in that pinch and thats why I
started archiving these emails on my box as well as downloading copies.
That wa
2007/7/17, David Duymelinck <[EMAIL PROTECTED]>:
Christian Bach schreef:
> After another late night, fixing a few bugs, the code is finally ready
> for it's first beta release.
>
> The main new features include:
> * Multi-column sorting
> * In-line support for setting options done via the class
1 - 100 of 131 matches
Mail list logo