[jQuery] Re: Please help - Table sorter does not seem to work

2009-11-14 Thread MorningZ
I could have sworn that "0" bug was fixed. guess it wasn't an official fix On Nov 14, 11:26 am, jacerhea wrote: > That's incorrect.  It has nothing to do with the whitespaces.  It > seems to be a bug with the tablesorter plugin.  Change the first td to > a 1 instead of a 0 and it will w

[jQuery] Re: Please help - Table sorter does not seem to work

2009-11-14 Thread jacerhea
That is not correct, it has nothing to do with the spaces. This seems to be a bug with the tablesorter plugin. If you replace the first 0 with 1 it will work. On Nov 14, 9:59 am, MorningZ wrote: > it thinks they are characters because you seemingly have spaces after > the numbers themselve

[jQuery] Re: Please help - Table sorter does not seem to work

2009-11-14 Thread jacerhea
That's incorrect. It has nothing to do with the whitespaces. It seems to be a bug with the tablesorter plugin. Change the first td to a 1 instead of a 0 and it will work fine. On Nov 14, 9:59 am, MorningZ wrote: > it thinks they are characters because you seemingly have spaces after > the numb

[jQuery] Re: Please help - Table sorter does not seem to work

2009-11-14 Thread PiotrJaniak
Hi, apparently Tablesorter can't handle zeros in sorted table. Without any 0 value your code works fine. check out this thread: http://groups.google.com/group/jquery-dev/browse_thread/thread/d8e75a30f7ca3067 and this site: http://beckelman.net/post/2008/10/24/Checkbox-Parser-and-Bug-Fix-for-j

[jQuery] Re: Please help - Table sorter does not seem to work

2009-11-14 Thread MorningZ
it thinks they are characters because you seemingly have spaces after the numbers themselves you'll either 1) need to trim off the whitespace in your html 2) write a custom parser to do this On Nov 14, 12:48 am, jarun111 wrote: > Hi, > I am trying to sort a table using jquery table sorter and

[jQuery] Re: Please help me..Its Urgent

2009-10-23 Thread sreehari ojili
why don't u include jquery.js in the project it self.. dowload from Jquery and include it in project. -Sreehari Ojili. On Fri, Oct 23, 2009 at 10:37 AM, jishnu123 wrote: > > > > > Hai friends, > >In my project i have implement jQuery using auto complete > and some other UI

[jQuery] Re: please help

2009-10-20 Thread Karl Swedberg
You could set up your server-side code to send back only a portion of the page rather than the entire thing. Other than that, we'd probably need to see more of your code before we could offer constructive advice. --Karl Karl Swedberg www.englishrules.com www.learningjquery.com

[jQuery] Re: PLease help.. sliding menu?

2009-05-13 Thread andy
jFlow is great - http://www.gimiti.com/kltan/wordpress/?p=32

[jQuery] Re: PLease help.. sliding menu?

2009-05-12 Thread Jack Killpatrick
maybe this one: http://github.com/nathansearles/loopedSlider/tree/master - Jack casey_oakland wrote: Hey all.. by chance / looking for a good sliding menu tutorial. I did find a great one! > http://www.flowplayer.org/tools/scrollable.html however.. it's just shy of what i need it to do. May

[jQuery] Re: Please Help - While Loop PHP & JSON - Comment List

2009-04-29 Thread Jake McGraw
#commentWrapper is the selector for the following element: The JS I provided will append that element if it isn't already present. I did have to make a single change: $(body).append(''); to: $("body").append(''); Also, you should specify the type expected for the $.post call: $.post(url, d

[jQuery] Re: Please Help - While Loop PHP & JSON - Comment List

2009-04-28 Thread fluxUX
This is great. Thanks so much! For some reason the DIV for the "commentWrapper" is not working on the render page..here is what I have: go It appears the code you provided amends the DIV. Any thoughts would be great? On Apr 28, 5:11 pm, Jake McGraw wrote: > You've got quite a few erro

[jQuery] Re: Please Help - While Loop PHP & JSON - Comment List

2009-04-28 Thread Jake McGraw
You've got quite a few errors in both your JavaScript and PHP, which probably explains the lack of answers. Utilizing AJAX using jQuery and PHP can be a bit confusing at first, I've tried to make some sense of what you're doing here: http://snipt.net/jakemcgraw/jquery-listserv-answer-ajax-comment

[jQuery] Re: Please help me

2009-03-17 Thread Karl Swedberg
This should get you started: http://www.learningjquery.com/ http://www.jqueryfordesigners.com/ http://docs.jquery.com/Tutorials http://net.tutsplus.com/category/tutorials/javascript-ajax/ --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Mar 17, 2009, at 3:30

[jQuery] Re: Please help me SPEED UP my dev. MySQL => PHP => JSON => AJAX => jQueryUI

2009-03-14 Thread dani
Big thanks to both of you!

[jQuery] Re: Please help me SPEED UP my dev. MySQL => PHP => JSON => AJAX => jQueryUI

2009-03-14 Thread Mat Schaffer
On Mar 14, 2009, at 4:38 AM, dani wrote: > Before taking on a challenging task, please give me some ideas to > speed up my development! > > Just as the topic is saying, I will primarily be doing: MySQL => PHP > => JSON => AJAX => jQueryUI > > I used to work with CakePHP but I have little experienc

[jQuery] Re: Please help me SPEED UP my dev. MySQL => PHP => JSON => AJAX => jQueryUI

2009-03-14 Thread Josh Powell
No, JSON is the correct route. If you are using ajax to retrieve json, then you can pull the json into a javascript object immediately. If you are using PHP to generate pages, then you can print out the JSON object as a string directly into javascript and create javascript objects that way. jQu

[jQuery] Re: Please, help me convert this flash menu into a jQuery menu?

2009-02-28 Thread 123gotoandplay
hi ricardo, tx, for the example and the code. the thing i have a problem with is the submenu part. Please click on second or third button to see what i mean - i need to dropdown the button beneath - slide the submenu in regards On 27 feb, 20:52, ricardobeat wrote: > You can do that with pur

[jQuery] Re: Please, help me convert this flash menu into a jQuery menu?

2009-02-27 Thread ricardobeat
You can do that with pure CSS: http://jsbin.com/eyivu http://jsbin.com/eyivu/edit with jQuery: $('#menu li a').hover(function(){ $(this).stop() .css({ backgroundColor: '#C66' }) .animate({ marginLeft: '+=5px' }, 200); }, function(){ $(this).stop() .css({ backgroundColor:

[jQuery] Re: please help me for the performance

2009-02-09 Thread Stephan Veigl
Hi David, use a reasonable speed e.g. 50ms = 20fps (instead of 1ms) should make the animation smoother and reduce computation time. you could also try to use background images instead of , but that may be not suitable for your application. by(e) Stephan 2009/2/8 David .Wu : > > I think so, bu

[jQuery] Re: please help me for the performance

2009-02-08 Thread David .Wu
I think so, but it's the requirement, so maybe there is another way to achieve it, I still figure on it. On 2月7日, 下午3時23分, jQuery Lover wrote: > Removing image reflection might improve performance... > > > Read jQuery HowTo Resource - http://jquery-howto.blogspot.com > > On Sat, Feb 7, 20

[jQuery] Re: please help me for the performance

2009-02-06 Thread jQuery Lover
Removing image reflection might improve performance... Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Sat, Feb 7, 2009 at 2:58 AM, David .Wu wrote: > > url: http://chan.idv.tw:90/test/marquee/marquee.html > rar: http://chan.idv.tw:90/test/marquee/marquee.rar > > Hi, t

[jQuery] Re: Please help me on a .lt method

2008-12-30 Thread Samuel
Thanks all the same。 I've got it solved. Actually the problem is that .lt and .gt were removed from the newly released jquery. Thanks. On Wed, Dec 31, 2008 at 1:10 PM, Kean wrote: > > Make a demo page or a html page. > > Some common mistakes > > 1. Did you include jQuery? > 2. Did you write som

[jQuery] Re: Please help me on a .lt method

2008-12-30 Thread Samuel
Hi Karl, Thanks very much for your quick helps. Feel very nice to hear from you. You write a very nice book. I can write some simple codes after reading your books for only a week. I'm reading the seventh chapter now. Actually I'm going to release a website for our Chinese learning English Vocab

[jQuery] Re: Please help me on a .lt method

2008-12-30 Thread Karl Swedberg
Hi Samuel, Sorry about the problems you're having with the code. The .lt() and .gt() methods were removed from jQuery shortly after the book was published. In their place, you can use the :lt() and :gt() selectors or the .slice() method. The .slice() method is quite versatile, and takes e

[jQuery] Re: Please help me on a .lt method

2008-12-30 Thread Kean
Make a demo page or a html page. Some common mistakes 1. Did you include jQuery? 2. Did you write something like var $table =$('table') before using $table.find() ? On Dec 30, 7:30 pm, Samuel Wu wrote: > Hi, everyone > > I started writing jquery from last week with the help from a very good

[jQuery] Re: Please help with navigation script

2008-12-28 Thread Alexandre Plennevaux
hi pranshu, it's hard to tell exactly, you could optimize a bit more your code, and use variable caching for example. In this regard, I find this post to be really helpful: http://www.tvidesign.co.uk/blog/improve-your-jquery-25-excellent-tips.aspx anyway, does the problem occur if you comment ou

[jQuery] Re: Please help with navigation script

2008-12-28 Thread precar
Still stuck on this...would really appreciate someone's help. Thanks, Pranshu. On Dec 27, 11:56 am, precar wrote: > Hi, > > I cleaned up the code a bit and wanted to repost it.  The site is > athttp://pranshuarya.com/test/pthesis/.  Once again, the specific > problem is this: > When you clic

[jQuery] Re: Please help with navigation script

2008-12-27 Thread precar
Hi, I cleaned up the code a bit and wanted to repost it. The site is at http://pranshuarya.com/test/pthesis/. Once again, the specific problem is this: When you click Portfolio > Refine by category and select a category, it loads and works fine. But then you cannot re-click on Refine by categor

[jQuery] Re: Please help with navigation script

2008-12-27 Thread donb
I didn't look too deeply into the code, but I suspect you are expecting appended elements to respond to click events, but those new elements will have no click event present, only the ones initially created by the ready function. A working example link would be helpful. On Dec 26, 1:13 pm, preca

[jQuery] Re: Please help me to find my mistakes on below code

2008-12-23 Thread bookme
Hi, I have solve this issue by replacing ajaxStart by onclick event and ajaxStart by complete: ajax request but can not solve using ajaxStart and ajaxStop On Dec 22, 8:03 pm, bookme wrote: > Hi, > > I am trying to solve ajaxStart and ajaxStop issue from last 3 days but > can not solve...can som

[jQuery] Re: Please help me improve my glassbox plugin

2008-12-13 Thread ShiwawaRaider
ok I have load my example to geocities, please take a look there also I found problem with the top-padding of top right icons that I don't found on my machine.. -_-' http://www.geocities.com/blackzabaha/ sorry for very big blackground image, it may take so long time to load, but I like it :) On

[jQuery] Re: Please help me improve my glassbox plugin

2008-12-13 Thread Mike Alsup
> Please a look at simple example > herehttp://www.2shared.com/file/4448827/d6437194/web.html > if it cool enough to be qualified as a plugin, I will contributed the > finished source. You'll have better luck with feedback if you post a link to a demo page.

[jQuery] Re: Please help me correct this

2008-01-11 Thread Lionel Martelly
"" . $error . ""; } exit; } - Original Message - From: "Mike Alsup" <[EMAIL PROTECTED]> To: Sent: Friday, January 11, 2008 1:31 PM Subject: [jQuery] Re: Please help me correct this > >> I am new to jquery. After a lot of trial and err

[jQuery] Re: Please help me correct this

2008-01-11 Thread Mike Alsup
> I am new to jquery. After a lot of trial and errors, I managed to > accomplish what I wanted: beforesubmitting to a form, I check for php > errors and then I display them in a div above the submit button. Works > great. But the problem that I am having, if there are no errors, the > form submits

[jQuery] Re: Please help: How to simulate a Tab key press with jQuery

2007-09-16 Thread Theodore Ni
Moreover, you can make sure each of your form elements has a tabindex attribute, and you can find the element with the next tabindex and focus it. Ted On 9/15/07, Erik Beeson <[EMAIL PROTECTED]> wrote: > > Can you not just focus the next field? Assuming your fields are all at the > same level, ju

[jQuery] Re: Please help: How to simulate a Tab key press with jQuery

2007-09-15 Thread Dylan Verheul
On 9/15/07, Mark <[EMAIL PROTECTED]> wrote: > I have a very large and complex form, and I am using some autocomplete > components, and I need when user selects one item in the autocomplete > option list, focus automatically go to the next component, like > pressing the tab key. Which autocomplete

[jQuery] Re: Please help: How to simulate a Tab key press with jQuery

2007-09-15 Thread Richard D. Worth
Try these three DOM methods in concert: http://developer.mozilla.org/en/docs/DOM:document.createEvent http://developer.mozilla.org/en/docs/DOM:event.initKeyEvent http://developer.mozilla.org/en/docs/DOM:element.dispatchEvent If you're able to get it to work, the event that gets generated and disp

[jQuery] Re: Please help: How to simulate a Tab key press with jQuery

2007-09-15 Thread Erik Beeson
Can you not just focus the next field? Assuming your fields are all at the same level, just: $(/* current component */).next('input,select,textarea,button')[0].focus(); Does that makes sense? --Erik On 9/14/07, Mark <[EMAIL PROTECTED]> wrote: > > > Hi, > I have a very large and complex form, a

[jQuery] Re: Please help! Why is this not working on IE6?

2007-06-12 Thread Richard D. Worth
On 6/9/07, Jose Manuel Zea <[EMAIL PROTECTED]> wrote: I´m still trying to fix this. ... So the thing is that when I set the attribute src of the image after the page is loaded, in IE6 doesn´t work if the image is not in the cache. Please help!! I don´t know how to explain this to my client.

[jQuery] Re: Please help! Why is this not working on IE6?

2007-06-09 Thread Jose Manuel Zea
I´m still trying to fix this. Something new I discovered: If I load the image directly in the browser, writing the URL in the address bar and after this, I reload the problem page and click on the thumbnail of the image I loaded, it works. It seems that when the image is in the cache, there is

[jQuery] Re: Please help! Why is this not working on IE6?

2007-06-09 Thread Jose Manuel Zea
I still trying to fix this. It seems it´s a problem in IE6 when the image it is the first time the image is going to be loaded; because if I load the image directly in the browser, typing the URL in the address bar, and after this I go to the thumbnail gallery and click on the thumb related to th

[jQuery] Re: Please help! Why is this not working on IE6?

2007-06-08 Thread Jose Manuel Zea
I´ve changed it, but it´s still not working :'( You can check the modified version in http://www.icorpal.com/index.php?seccion=promociones&codigo=8 I hate IE so much!!! Thank you. Any ideas? Alexandre Plennevaux wrote: > try this: > $("a.preview_promocion").bind("click",function(){ >

[jQuery] Re: Please help! Why is this not working on IE6?

2007-06-08 Thread Alexandre Plennevaux
try this: $("a.preview_promocion").bind("click",function(){ $this= $(this); $("a#thickbox_loader").attr("href","images/inmuebles/"+$this.attr('id')+".jp g"); $("#vista_promocion img").attr("src", "http://www.icorpal.com/helpers/image_cropped.php?width=300&height=200&posit ion=c