[jQuery] jQuery.post muti-threaded

2008-09-09 Thread DLCramer
Hi There, I have a problem that I cant seem to get around. If i make a jQuery.post request to process.php and that that page gets an infinate loop, the request just sits waiting until the script times out. Now while its waiting for the timeout, no other jQuery.post requests will complete until

[jQuery] Re: jquery is breaking iWebSite.js

2008-09-09 Thread Stuart Dunkeld
I think the problem is that iWebSite.js uses the Prototype library, and there's a conflict over which library gets to use the $ shortcut. http://docs.jquery.com/Using_jQuery_with_Other_Libraries has some techniques which may help resolve the conflict.. -- stuart On Tue, Sep 9, 2008 at 9:28 PM,

[jQuery] Jcrop v0.9.0 image cropping plugin - comments please

2008-09-09 Thread Kelly
Announcing initial release of Jcrop image cropping plugin for jQuery. This is my first plugin release, so I would appreciate any feedback. http://deepliquid.com/content/Jcrop.html Also posted to plugins.jquery.com There are some rough edges in the API and a few other minor issues. More work to

[jQuery] Tablesorter Tablepager problem, desperate for help

2008-09-09 Thread Charaseac
Hi guys, so i'm making this dynamically created table. Each row has checkbox. The table is sortable and i'm going to use tablesorter's pager plugin in it. I want to limit the number of the checked checkboxes to 7. So i wrote another havascript to control this. When the user checked 7 checkboxes

[jQuery] Re: Selecting a checkbox by clicking anywhere on a row

2008-09-09 Thread Wooty
Hi Micheal, You've probably already sorted this, but: code script $('.checkbox').click(function(e) { e.stopPropagation(); var action=$(this).attr('checked') ? 'checkbox: you checked it' : 'checkbox: you unchecked it' alert(action) }); $('.myrow').click(function(e) {

[jQuery] Re: scrollTo anchor or class in div

2008-09-09 Thread Ariel Flesler
I really can't find what you mention, I see the content that is loaded by ajax, but can't figure out what kind of scrolling you need. If you can reduce the situation/problem to something small and minimalistic, I'll check it out asap. Cheers -- Ariel Flesler http://flesler.blogspot.com/ On

[jQuery] Re: SuperFish - always display some submenu items

2008-09-09 Thread Andrew Lysyuk
Not at all the same, but near )) Do you have any ideas? I tried to edit source code, but I'm very newbie in jQuery... There is one method, but IE braek layout of HTML template after that - I tried to wrap li elements that I need to proccess with SuperFish to div/div: liThis must be always

[jQuery] Re: ClueTip ?? HOw to hide or turnOff tooltips

2008-09-09 Thread T3 2006 TEAM ALPHA
Hi Karl, I did use onActivate and return false. But now what happen is that when user click again on link to turn tool tip on. Half of the tool tips not getting text in it. They just displaying empty div even no title on top (jtip) where as rest half are showing and it's happening

[jQuery] Re: Jcrop v0.9.0 image cropping plugin - comments please

2008-09-09 Thread Stephen
Had play with the online demo, very cool Kelly. Would have quite a few applications, and allow non tech (photoshop) users to edit images on the fly with little to no hassle. Cheers Stephen

[jQuery] Re: scrollTo anchor or class in div

2008-09-09 Thread pedalpete
Sorry Ariel, My bad, this might make it easier http://HearWhere.com?showid=1388718 if you follow that link, it will load coldplay and there shows. If you scroll down to the upcoming coldplay shows, there is a section with a small map on the left and a scrollable list on the right. From that

[jQuery] Re: Jcrop v0.9.0 image cropping plugin - comments please

2008-09-09 Thread Sam Sherlock
awesome stuff on every level. extremely simple - immediately usable 2008/9/10 Stephen [EMAIL PROTECTED] Had play with the online demo, very cool Kelly. Would have quite a few applications, and allow non tech (photoshop) users to edit images on the fly with little to no hassle. Cheers

[jQuery] Re: New jQuery Website...

2008-09-09 Thread Rick Faircloth
Chris. Check this one in IE7. http://docs.jquery.com/Tutorials:jQuery_For_Designers# Rick From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Chris Jordan Sent: Tuesday, September 09, 2008 12:55 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: New jQuery

[jQuery] Re: Jcrop v0.9.0 image cropping plugin - comments please

2008-09-09 Thread Richard D. Worth
Slick! Very nice demos. You said there were some minor issues, so you may already know about this, but when the mouse is moved outside the image (while dragging) it gets unsynced. That is, move 100px away from image edge and as soon as you start moving back, crop box starts moving, instead of

[jQuery] Re: How to select all input elements but the button one?

2008-09-09 Thread FrenchiINLA
how about: $('input:not[type=submit], input:not[type=button] ') On Sep 9, 12:00 pm, aldomatic [EMAIL PROTECTED] wrote: I'm trying to select all input elements but the submit or button. I appreciate the help. Aldo

[jQuery] Re: Cancel .toggle() when a link is clicked

2008-09-09 Thread FrenchiINLA
to make id simple i add an 'notoggle' id to your link you can use the following code: $('#toggle').click(function() { alert('toggle'); }); $('#notoggle').click(function() { alert('No Toggle'); return false; }); or if you don't want use id for the link $('#toggle a') instead of

[jQuery] Re: autocomplete on cloned inputs

2008-09-09 Thread Xinhao Zheng
hi all, is there anyone who knows why clone didn't work when use input with the aucomplete plugin binded. Is there any walkround solution? George peCan wrote: I have the same question. Can I use jquery.autocomplete on cloned inputs? thx. On 30 Čec, 13:56, rayfidelity [EMAIL

[jQuery] Re: Validate remote: passing multiple variables?

2008-09-09 Thread Xinhao Zheng
hi ryanstreet, You can use $.('xxx').serialize() to collect all the input element into an array,or else you may try json,like json = '{ a: {\p\:\cc\,\m\:\aa\,\s\:\bb\}, b: 2, c: 3, d: 4, e: 5 }'; $.post(url, {data:json}, function() { //xxx});

[jQuery] Comparing two textboxes

2008-09-09 Thread Littletower
Hi, I wrote a script to verify if two text boxes have the same value/text. checkpasse.php just verifies if the text box edtMdp($_POST['edtMdp']) equals edtCMdp ($_POST['edtCMdp']), if they do: echo yes, if the don't echo no so if the result of checkpasse.php is, for example, no (datamdp=='no')

[jQuery] Re: jquery cycle - advanced uses

2008-09-09 Thread Mike Alsup
The goal is to have a cycle that runs along with a pager.  The pager is custom and works on hover.  Additionally, I want the cycle to pause while you're hovering on a pager item, and resume once you've left. This code appears to work correctly, but it occasionally says paused or if you

[jQuery] Re: SuperFish - always display some submenu items

2008-09-09 Thread Joel Birch
Hi Andrew, Superfish doesn't have the feature of being able to skip the first level of menu. I'll consider how best to do this for a future version of Superfish as long as it doesn't bloat the code too much. Sorry I couldn't help. Joel Birch.

[jQuery] Re: SuperFish - always display some submenu items

2008-09-09 Thread Joel Birch
Sorry, that response was meant for Mike - sorry for the confusion! However, I was just about to write you a near-identical response anyway. I'll keep your feature request in mind, but for now I'm afraid you are out of luck with this. Joel Birch.

[jQuery] Re: Superfish - display2 deep and have mouseover for anything deeper

2008-09-09 Thread Joel Birch
Hi Andrew, Superfish doesn't have the feature of being able to skip the first level of menu. I'll consider how best to do this for a future version of Superfish as long as it doesn't bloat the code too much. Sorry I couldn't help. Joel Birch.

[jQuery] Re: Superfish - display2 deep and have mouseover for anything deeper

2008-09-09 Thread Joel Birch
Arrgh. I meant Hi Mike. Sorry.

[jQuery] Re: superfish menu, Error: $(ul.sf-menu) is null

2008-09-09 Thread Joel Birch
Hello, We would have to see your page to figure out which of your other scripts are not playing nice with Superfish. Maybe those scripts use the dollar symbol? If so, you could just rewrite your jQuery code to use the 'jQuery' function name instead of '$' as they are both equivalent to each

[jQuery] Re: Superfish: onBeforeShow and onHide callback functions

2008-09-09 Thread Joel Birch
Hello, Superfish does not handle closing animations. The main reason for this is that it is surprisingly tricky to do without triggering buggy behaviour and adding too much code bloat to handle those bugs. Doesn't seem worth it to me. Joel Birch.

[jQuery] Re: Superfish: Gap between top level menu and popup..

2008-09-09 Thread Joel Birch
Notice in superfish.css, this rule: .sf-menu li:hover ul, .sf-menu li.sfHover ul { left: 0; top:2.5em; /* match top ul list item height */ z-index:99; } The top property dictates where the top of the first submenus

[jQuery] Re: Superfish Navigation bar text color

2008-09-09 Thread Joel Birch
Please supply a link to your example so we can give specific help. Here is my general help: .sf-menu a { color:white; } .sf-menu ul a { color:red; } Joel Birch.

[jQuery] Re: Superfish with custom backgrounds

2008-09-09 Thread Joel Birch
Sure. Just specify the hovers for the top level links, then override the rest using more specific selectors to set their backgrounds to a solid colour, or whatever you want them to be. Joel Birch.

[jQuery] Re: Superfish Issues

2008-09-09 Thread Joel Birch
As shown in the Superfish documentation, you need to call supersubs() after superfish() in the chain. Give that a go and see if it works. Joel Birch.

[jQuery] Re: Superfish Sub menu position

2008-09-09 Thread Joel Birch
You could either design the page to avoid this, or you can alter the CSS so that the right most nav item's submenu uses right:0; , or you could search for the 'Supposition' plugin and use that instead. Joel Birch.

[jQuery] Re: Jquery .load() can't load style and js in html file on Safari and Chrome??

2008-09-09 Thread Jove
any idea?

[jQuery] Re: bug in fix method?

2008-09-09 Thread Karl Swedberg
Hi there, I think this one has been fixed already: http://dev.jquery.com/ticket/2947 You might want to grab a copy of the svn version and see if it works there. --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Sep 9, 2008, at 12:32 PM, [EMAIL PROTECTED]

[jQuery] offset bug on YUI grid css

2008-09-09 Thread james_027
Hi, I am using the offset() to get the top and left properties of an html element. I am getting a different result from FF2 and FF3. FF2 got it right while FF3 got it wrong but has almost same result with Chrome. I think it's because of the complexity of YUI grid css? but it was right on FF2 ...

[jQuery] Re: non-recursive element filtering

2008-09-09 Thread Karl Swedberg
Hi Dominique, You could do this: $('button').filter(function() { return $(this).parents('div.list').length == 1; }); That will select all button elements that have only one ancestor div.list element. Hope that helps. --Karl Karl Swedberg www.englishrules.com

[jQuery] Re: clueTip plugin DOM manipulation clarification.

2008-09-09 Thread Karl Swedberg
Hi Alex, Sorry you're having problems with this. I just committed a patch related to those lines today: http://jqueryjs.googlecode.com/svn/trunk/plugins/cluetip/ Maybe it'll help with the issue you're having, but I'm not sure if you want the events to be cloned along with the content or

[jQuery] Validate dynamic-totals.html

2008-09-09 Thread john henderson
Hi, Brilliant bit of work! Your example is just what I need for my PDA web form. I use dreamweaver with php and mysql. I have a form that I need to validate containing multiple rows of records. At the present moment there is no extension from ADOBE that provide validation on multiple records,

[jQuery] Re: Why doesn't my prev() work?

2008-09-09 Thread Karl Swedberg
You're right Aaron. The attribute selector was malformed. The other problem is that the '.child' element is not the previous sibling of the 'a[name=selected]' element, which is what the .prev() method is looking for. Keir, you need to go *up* the DOM. Also, not sure why you want to hide

What causes hair loss?

2008-09-09 Thread karthik Moonnu
Hair loss http://onlinehp.blogspot.com/ can occur as thinning, in which you may not notice hair falling out, or as shedding, in which clumps of hair fall out. Because hair is an important part of appearance, hair loss can also result in loss of self-esteem and feeling

Re: schema replication 2.4

2008-09-09 Thread Daniel Paufler
Hell Again Unfortunately, i still have a problem to replicate my schema with openldap 2.4. I found one thread in the archives [1], but it did not help me much. Can anyone give me some hints how to replicate my masster schema to the slave, but still be able to change e.g. LogLevel on my slave?

<    1   2