[jQuery] Re: Tablesorter dateFormat

2007-12-20 Thread Christian Bach
Hi Jay, There was a small bug in the parser. This works as expected: $.tablesorter.addParser({ // set a unique id id: 'dates', is: function(s) { // return false so this parser is not auto detected return false; }, format:

[jQuery] Re: Interface droppables versus UI Droppables

2007-12-20 Thread Richard D. Worth
If you could file a feature request ticket here, I'd be happy to take a look at it: http://dev.jquery.com/newticket Thanks. - Richard On Dec 19, 2007 6:11 AM, Karl Delandsheere [EMAIL PROTECTED] wrote: Hi! I'm moving a project from Interface to UI. When it was working with Interface, I

[jQuery] Re: tr not applying CSS

2007-12-20 Thread Wizzud
Have you tried giving your row a specific class instead of using name? eg. $('tr.myRowClass').hover( function() { $(this).addClass(newClass); }, function() { $(this).removeClass(newClass); } ); On Dec 20, 4:31 am, JQueryProgrammer [EMAIL

[jQuery] tablesorter: sorting every 2nd row

2007-12-20 Thread patrickk
we have a table where every 2nd table-row provides some detailed information on the row above. structure: table tbody trtdmain content .../tdtd .../td/tr tr class=extendedtdsubcontent .../tr and so on ... /tbody now, I´d like to sort the table without rearranging the tr's with

[jQuery] Re: rounded corners on images with jquery?

2007-12-20 Thread caruso_g
Hi Mike, thanks a lot for the plug-in! I would ask for borders too, if possible, and, if I may, it would be great for anti-alias too as made in CurvyCorners. That would made it excellent. That said, is it possible to use the wrapping div without previous knowing its size and so image size? I.E.

[jQuery] Re: tr not applying CSS

2007-12-20 Thread Shawn
Sometimes the order of your CSS definitions make a difference. If newClass is defined before the other CSS being applied you can try to move the newClass definition below. Next, make sure your selector is working. Try something like $(this).css(background-color, #f00); If you don't see

[jQuery] javascript function causes cluetip to stop working

2007-12-20 Thread ashario
hi all i'm trying to learn jquery and cluetip and have come across a problem where an extra line of jquery javascript causes cluetip to stop working eg it works if I write script type=text/javascript $(document).ready(function() { $('a.player').cluetip(); }); /script but if I write script

[jQuery] Plugin for code highlighting and row numbering?

2007-12-20 Thread Shawn
I know I saw something a while ago, but can't seem to see it on the Plugins page. I'm looking for a plugin that can do syntax coloring and row numbering for when I need to post code samples to my web pages. The best I've found so far is Chili for the syntax coloring. But it's samples don't

[jQuery] Re: tr not applying CSS

2007-12-20 Thread Ian Oxley
Does the class that you are applying to your tr set the background- color on the tr itself? If so, you might want to try modifying your CSS a bit to apply the background-color to the td elements in your tr like: tr.newClass td { background:#ff; } Hope this helps. On Dec 20, 4:31 am,

[jQuery] Re: JQZoom Updated

2007-12-20 Thread [EMAIL PROTECTED]
Do you like it? it's my plugin. Ing. Renzi Marco On 18 Dic, 06:31, Rey Bango [EMAIL PROTECTED] wrote: JQZoomhas been updated to v1.1 http://www.mind-projects.it/blog/?page_id=14 It acts as a magnifier for images. Rey

[jQuery] Re: How to find a table cells value?

2007-12-20 Thread Shawn
Knowing the basics of jQuery helps. Then being able to project what you know for the easy problems onto the harder problems is also a good skill. In this case, knowing the basics that .text() gets the text of an HTML element is the starting point. This is defined in the docs, and after

[jQuery] Attribute selector (^=) problem with multiple values

2007-12-20 Thread Nicolas Le Thierry d'Ennequin
Hi jQuery group, The simple piece of code below is designed to highlight table cells whose class name is that of the currently hovered one (to visually group them). In my example the class name itself is film + id (film1, film2, etc) so I use the [attribute^=value] selector. OK to that point,

[jQuery] Can UI Sortable create additional levels?

2007-12-20 Thread [EMAIL PROTECTED]
UI Sortable seems a great tool but to be sure it suits my purpose I need to know if it implements the possibility to create further levels, ie if an item is dropped over another item, it would be nested in that one. The demos I've seen don't work that way but it would be a pity (and even a bit

[jQuery] Re: JQZoom Updated

2007-12-20 Thread Vincent Majer
Very cool plugin ! I'll use it soon ! thanks Cordialement, Vincent Majer, Responsable technique, TraveLinks [EMAIL PROTECTED] a écrit : Do you like it? it's my plugin. Ing. Renzi Marco On 18 Dic, 06:31, Rey Bango [EMAIL PROTECTED] wrote: JQZoomhas been updated to v1.1

[jQuery] Re: JQZoom Updated

2007-12-20 Thread Rey Bango
Absolutely Renzi! That's why I wanted to make sure that everyone on the list knew it had been updated. Always be sure to let us know about updates and new plugins. :) Rey [EMAIL PROTECTED] wrote: Do you like it? it's my plugin. Ing. Renzi Marco On 18 Dic, 06:31, Rey Bango [EMAIL

[jQuery] Re: iPhone and slide animations

2007-12-20 Thread Flesler
I don't use jQuery for IPhone, but I do code for it. I suppose the problem is the delay of the interval. While a normal browser handles 20ms pretty well, the IPhone seems to go mad, see if you can find that number in the source and change it for 80 or 100. Ariel Flesler On Dec 19, 7:11 pm,

[jQuery] Re: rounded corners on images with jquery?

2007-12-20 Thread Alexsandro_xpt
Hi, somebody know the www.meerbox.nl corner plugin? it´s jquery based too. But what that is better? 1 - www.meerbox.nl 2 - http://jqueryjs.googlecode.com/svn/trunk/plugins/corner/jquery.corner.js 3 - http://www.malsup.com/jquery/corner/ Somebody knows? Thz

[jQuery] Re: Removing elements

2007-12-20 Thread Karl Swedberg
Hi Larry, Nothing stupid at all about your question. Brandon or John can correct me if I'm wrong, but I think the behavior of the remove() method has changed recently in svn. With recent svn versions, the elements are completely destroyed (to avoid memory leaks?). Clearly I'm not the

[jQuery] Re: rounded corners on images with jquery?

2007-12-20 Thread Mike Alsup
I would ask for borders too, if possible, and, if I may, it would be great for anti-alias too as made in CurvyCorners. That would made it excellent. Borders are possible, just not super thin borders. See the demo pages referred to in the source file. Anti-aliasing will not be added to this

[jQuery] Possible solution to IE7 opacity and cleartype

2007-12-20 Thread Cliff
It's probably common knowledge that changing opacity in IE7 disables cleartype. Someone seems to have come up with a workaround: http://mattberseth.com/blog/2007/12/ie7_cleartype_dximagetransform.html Is this a viable fix? If so, how likely is it that this solution would be incorporated into

[jQuery] Help Test jQuery 1.2.2 (beta 2)

2007-12-20 Thread John Resig
Hi Everyone - We've landed about 20 more bug fixes since the previous 1.2.2 beta and we'd like to do a quick sanity check before we go live. http://code.jquery.com/jquery-1.2.2b2.js Please pay special attention to $(document).ready() in Safari 3 and Opera 9, .height() and .width(), and IE

[jQuery] Re: Tablesorter dateFormat

2007-12-20 Thread Jay Fallon
Thanks Christian!! That worked out great. Thanks again for your time and the plugin, of course. On Dec 20, 3:02 am, Christian Bach [EMAIL PROTECTED] wrote: Hi Jay, There was a small bug in the parser. This works as expected: $.tablesorter.addParser({ // set a unique id

[jQuery] Re: If Thickbox doesn't load, then do something

2007-12-20 Thread cfdvlpr
We just had a user on Mac 0S 9 with an old IE browser call in and say the thickbox would not load. If anyone has a solution for how to detect when the thickbox doesn't load, I'd really really love to know about it.

[jQuery] Re: JQZoom Updated

2007-12-20 Thread Olivier Percebois-Garve
Hi Is the zoomed image being ajax loaded each time the thumbnail is hovered ? I have a slow and erratic Internet connection, and when I hover the thumb, I just see a little brown square in the inner top of a big grey square. It then takes a few seconds before to see the zoomed image. You may

[jQuery] navigation and cycle plugin

2007-12-20 Thread Sebastián V. Würtz
i spent 3 hours and i cant make it work, if someone can helpme pls, i try to integrate this: the remove class and the pause/resume cycle jQuery(#btn_pausa a).bind(click, function() {

[jQuery] Re: iPhone and slide animations

2007-12-20 Thread kpmartin
Awesome. Thanks for giving me something to chase down.

[jQuery] Re: rounded corners on images with jquery?

2007-12-20 Thread Alexsandro_xpt
uhmmm...Good, but You tell us the #1 requires the additional excanvas script for IE, I using that and I no need any additional, and it´s working so good for IE 6 and 7. Alexsandro

[jQuery] Re: Plugin for code highlighting and row numbering?

2007-12-20 Thread Erik Beeson
Chili is probably your best bet. I whipped up a little example that does a little post processing to add line numbers: http://erikandcolleen.com/erik/projects/jquery/chililineno/ There might already be an option for it in Chili, and there's probably a smother way to apply it than I'm doing, but

[jQuery] Re: rounded corners on images with jquery?

2007-12-20 Thread Mike Alsup
Well IE doesn't support the canvas tag natively, so you must be including the script. If you look at the examples you will see they include it too (conditionally). Mike On Dec 20, 2007 11:41 AM, Alexsandro_xpt [EMAIL PROTECTED] wrote: uhmmm...Good, but You tell us the #1 requires the

[jQuery] Re: autocomplete bug when focus called

2007-12-20 Thread uyuni
This error does NOT depend on an AJAX-queue! The autocomplete plugin sets an internal focus variable and if it is not set then the autcomplete listing is not shown. I added an option for focus. The option sets the internal focus and also sets the cursor into the field:

[jQuery] Re: rounded corners on images with jquery?

2007-12-20 Thread Jack Killpatrick
Using the meerbox plugin, we were unable in IE6 to get bottom corners to move correctly when the content inside the rounded box changed height dynamically. The bottom line would move, but the corners would not. We also had some troubles in IE6 with the bottom line appearing approx 2px off

[jQuery] using AJAX with jQuery

2007-12-20 Thread jjshell
Hello, I'm new to jQuery (and AJAX for that matter). Even if the library is really easy to use, I'm still having problems ajaxing. I'd like to understand how to post the following simple form to the server, and send a message to the client depending on the submission process output (telling him

[jQuery] Re: using AJAX with jQuery

2007-12-20 Thread Benjamin Sterling
jjshell, The easiest way is to use the form plugin: http://www.malsup.com/jquery/form/ On 12/20/07, jjshell [EMAIL PROTECTED] wrote: Hello, I'm new to jQuery (and AJAX for that matter). Even if the library is really easy to use, I'm still having problems ajaxing. I'd like to understand how

[jQuery] Re: Can't set CSS left for IE6

2007-12-20 Thread Jonathan Sharp
Hi Nathan, It's kind of hard to debug your example without knowing the context of the html and css. Do you have a sample url? Cheers, -Jonathan On 12/19/07, cfdvlpr [EMAIL PROTECTED] wrote: if( $.browser.msie (jQuery.browser.version 7.) ) {

[jQuery] Re: using AJAX with jQuery

2007-12-20 Thread Jake McGraw
Replace // ? with: $(function(){ // 1 $(form).submit(function(){ // 2 var value = $(this).find(input[name=test]).val(); // 3 $.post(/test/ajax/record/,{test:value},function(){ // 4 alert(Message sent successfully!); // 5 }); return false; // 6 }); }); Notes for each

[jQuery] Re: My First jQuery Plugin..... jQuery.Sheet, a spreadsheet for jQuery

2007-12-20 Thread Sam Sherlock
nice work. a good start select rows or cols - and be able to copy (just them to copypaste) shift clicking sorting (excel can exclude header cells) double click to edit in place (I see you can put the value in the top, but that alot of backward and forewards with the mouse) transform cell

[jQuery] Re: Updating input values before the submit.

2007-12-20 Thread Jake McGraw
Ah do you have a copy of the form, so I can see exactly what you're doing? - jake On Dec 18, 2007 7:29 PM, Jesse R. [EMAIL PROTECTED] wrote: The request is still failing. Any other ideas? On Dec 18, 11:37 am, Jake McGraw [EMAIL PROTECTED] wrote: The problem is that the form is actually

[jQuery] Re: Help Test jQuery 1.2.2 (beta 2)

2007-12-20 Thread Byron
So many bug fixes! keep up the great work guys, would be nice to get these (http://dev.jquery.com/ticket/2079) fixed up though :D Merry xmas to all jQuery team/community! Byron

[jQuery] animate() with em fontsize units

2007-12-20 Thread Andrew Ma
Hello, I have a chunk of code that animates fontsize changes with the units set to em. The animation is a bit wacky. Am I doing something wrong or have I found a bug? style #test { font-size:1.2em; } /style div id=test href=http://www.google.com;Test/div script

[jQuery] Re: Plugin for code highlighting and row numbering?

2007-12-20 Thread Alexey Blinov
Hi! You can check this one: http://code.google.com/p/syntaxhighlighter/ and yes )) its near - at Google Code ;-) On Dec 20, 2007 8:27 PM, Erik Beeson [EMAIL PROTECTED] wrote: Chili is probably your best bet. I whipped up a little example that does a little post processing to add line numbers:

[jQuery] Re: animate() with em fontsize units

2007-12-20 Thread ajma
BTW, This seems to be an IE only problem. Works fine in Firefox.

[jQuery] [NEWS] Blog Post: 50+ Amazing Jquery Examples- Part1

2007-12-20 Thread Rey Bango
Very cool post detailing 50 jQuery plugins: http://www.noupe.com/ajax/50-amazing-jquery-examples-part1.html Rey...

[jQuery] Re: using AJAX with jQuery

2007-12-20 Thread Shawn
Keeping in mind that the $.get() and $.post() methods are just convenience wrappers for $.ajax(). You could do the same with this: $.ajax({ url: /test/ajax/record/, type: POST, data: test= + $(input[name=test]).val(), success: function (data) { alert(Successfully saved data);

[jQuery] Re: How to find a table cells value?

2007-12-20 Thread Monica
Rob, Imediately after the innerText post, I posted another message saying exactly what you said above. It did not work in firefox. So I had to change it to: $($('#searchDataTable)[0].rows[rowid].cells[colid]).text(); I think there is something wrong with this forum software, cause I do not see

[jQuery] Re: trigger all events of a type?

2007-12-20 Thread Mark Hahn
Here's what I was thinking of, untested: $(document).bind(myEvent, subscriber_element, function(event) { alert(I received an event without subscribing!); alert(my node type is +event.data.nodeType); }); $(document).trigger(myEvent); The basic idea is to pass the subscribing

[jQuery] .click working once only

2007-12-20 Thread pedalpete
I'm sure this is something simple, but I'm fairly new to programming and very new to jquery. I have a table where each cell has a unique id. when the user hovers over the cell I display some options which loads a form based on what the user selects...(not important). Anyway, everything works

[jQuery] Droppable Objects

2007-12-20 Thread [EMAIL PROTECTED]
Hi All I 2 droppable objects FormObject andRadioComposite object .There is another object RadioObject. What i am trying to do is drop RadioComposite into FormObject and then drop RadioObject into RadioComposite. As of now, i can only drop RadioComposite into FormObject. After which i am unable

[jQuery] Re: jquery forms with ajax responses

2007-12-20 Thread [EMAIL PROTECTED]
pedalpete, I am having this very same issue. Is there something specific you had to do to get jquery to work on returned forms? Thanks On Dec 18, 5:35 pm, pedalpete [EMAIL PROTECTED] wrote: Thanks for your help Hamish, I just got this working with the ajaxForm plugin.

[jQuery] Looking for jquery dev for job?

2007-12-20 Thread yabado
I am looking for an experienced jquery developer to work with me on a project? Any recommendations are welcome. :-) Please contact me at mike -at- yadab -dot- com

[jQuery] jQuery assistance w/ moving nearby elements

2007-12-20 Thread soupenvy
I have this navigation, pretty basic really: http://ghettocooler.net/stuff/code/jquery/push-nav/ But, If the user clicks on a list item in the middle, for example, I'd like all the Items above it to be triggerd, as if they were clicked as well. So, user clicks on a navigation item it pushes

[jQuery] Re: Help Test jQuery 1.2.2 (beta 2)

2007-12-20 Thread nathandh
We've landed about 20 more bug fixes since the previous 1.2.2 beta and we'd like to do a quick sanity check before we go live. John, is there any formal procedures for beta testers? I'd be happy to lend a hand, but I'm not really sure what you're looking for... Thanks, Nathan

[jQuery] How to get all CSS values from Attributes

2007-12-20 Thread Jeroen
Suppose this piece of css, how would I get the values for top, margin- left or padding? #divname { top: 0; margin-left: 1px; padding: 7px; } Setting this is easy: $(#divname).css('height', '200px'); And getting it also: var foo = $(#divname).width(); or var foo =

[jQuery] Re: Interface droppables versus UI Droppables

2007-12-20 Thread Paul Bakaus
Guys, there already is that feature available. It's just called a little different: $.ui.ddmanager.prepareOffsets(); (I guess). Please try if it works for you. Thanks. On Dec 20, 11:06 am, Richard D. Worth [EMAIL PROTECTED] wrote: If you could file a feature request ticket here, I'd be happy to

[jQuery] jQuery LightBox issue in IE7

2007-12-20 Thread Rey Bango
Hey guys, I'm hoping you can help me troubleshoot something. If you look at the following link in FF and click on any of the thumbnails under Photos, you'll see that the lightbox appears correctly. http://dev.healthybuyersclub.com/guide/detail.cfm?id=2 If you look at the same page in IE7,

[jQuery] Re: jQuery assistance w/ moving nearby elements

2007-12-20 Thread soupenvy
I've now got it doing what I want, thanks to the .prevAll() selector. However, the closing portion of my JS doesn't seem to work: $(document).ready(function() { $(#tabs li).addClass(closed) $(#tabs li.closed).click (function() { $(this).animate({top:'-387'},

[jQuery] Re: Best technique? .load() and div height...

2007-12-20 Thread Micky Hulse
Good questions McLars... Thanks for the extra info. I was not sure if it was just me, a moderation thing, or combination thereof. I personally do not mind waiting to see my post... I opted to only view my messages online, so I am not sure if messages show-up faster via email. Either way, I am

[jQuery] Using jqGrids as the subgrid

2007-12-20 Thread Chuck
Hello, I would like to use jqGrids as the subgrids for each row as its expanded. To that end, I have modified jqGrid to allow the dynamic creation of jqGrids that are set as the subgrid. The idea is to have jqGrid nested inside another jqGrid. This code is a work in progress and is probably