[jQuery] Re: Problem validate under IE

2008-03-31 Thread David
Please help me. On Mar 31, 11:29 am, David <[EMAIL PROTECTED]> wrote: > http://www.contaflux.ro/gestiune/module/intrari.php > I have two problems: > 1. This script works good in FF, but it doesn't work in IE6. > I have been trying to solve it for 2 day, but i didn'

[jQuery] Problem validate under IE

2008-03-31 Thread David
http://www.contaflux.ro/gestiune/module/intrari.php I have two problems: 1. This script works good in FF, but it doesn't work in IE6. I have been trying to solve it for 2 day, but i didn't succeed. Please help me. 2. The method resetForm from plugin validate it doesn't work neither in IE6 nor FF.

[jQuery] Re: flexigrid plugin - help for server side script

2008-03-25 Thread David
It's superrr plugin.

[jQuery] Re: general onload

2008-03-23 Thread David McFarland
On Mar 23, 2008, at 10:10 AM, [EMAIL PROTECTED] wrote: > > I need to know how to create an onload for all occasions. How do I > make an onload for jquery and other scripts on my site. Not a jscript > coder so take it easy for me. Check this out: http://jquery.open2space.com/node/9 --dave

[jQuery] Re: Issues with Backwards Traversing the DOM

2008-03-07 Thread David Stamm
aking, that tag is supposed to represent the document's header, rather than the header of an individual element. I'd recommend using a or tag instead. David On Mar 6, 11:32 am, Joe <[EMAIL PROTECTED]> wrote: > So I'm having an issue attempting to traverse back in a element

[jQuery] Accessibility

2008-03-04 Thread David Bolter
ing a part of making jQuery UI more accessible, John has created a google group: http://groups.google.com/group/jquery-a11y Please join the effort! cheers, Colin Clark and David Bolter

[jQuery] Re: How do you test if hidden or shown in jquery

2008-03-03 Thread David McFarland
On Mar 3, 2008, at 5:42 AM, otherjohn wrote: > Where can I > find specific functions like this. I searched the api and couldn't > find anything like it. http://docs.jquery.com/Traversing

[jQuery] Re: Function overriding

2008-03-03 Thread David Stamm
trying to override a call to alert(). But I thought I'd mention it, in case it does applies to your real-world situation. thanks, David On Mar 3, 11:24 am, howa <[EMAIL PROTECTED]> wrote: > On 3月3日, 下午11時56分, David Stamm <[EMAIL PROTECTED]> wrote: > > > >

[jQuery] Re: dblclick function bind and content selection

2008-03-03 Thread David Stamm
ks for you! thanks, David On Mar 2, 4:22 am, "guillaume sempé" <[EMAIL PROTECTED]> wrote: > Hello, > > I have a function binded on dblClick event of a DIV. When user > dblclick on the DIV its content is selected and my function is > executed. Is there any solution

[jQuery] Re: Function overriding

2008-03-03 Thread David Stamm
alert("jQuery.example.sayHello(Overrided): " + str); }; This is probably the easiest solution. Let me know if this doesn't answer your question. David On Mar 3, 2:50 am, howa <[EMAIL PROTECTED]> wrote: > Consider I have a simple plugin, e.g. > >

[jQuery] Re: toggle disables links - unwanted

2008-02-25 Thread David McFarland
On Feb 25, 2008, at 4:10 AM, Ariel Flesler wrote: > > Try the latest jQuery (1.2.3) which removed .toggle() toggle() was removed? i'm using jquery 1.2.3 and it seems to be working for me. This isn't mentioned in the release notes either: http://docs.jquery.com/Release:jQuery_1.2.3 --dave

[jQuery] Re: getting element number?

2008-02-05 Thread David Serduke
untested but something like this should work using closure: $('#' + self.options.auto_complete_id + ' li').each(function (i) { $(this).bind('mouseover', function() { if (i == 3) { //code } }); }); David

[jQuery] Re: Parsing XML using jQuery

2008-01-28 Thread David Serduke
u put in your post. I think your problem is somewhere other than what you posted. Hope that helps. David

[jQuery] Re: slideToggle weirdness - also Easing question

2008-01-26 Thread David Serduke
I've never used any of them so I don't know their state but I know people have been adding fx here: http://dev.jquery.com/browser/trunk/fx Just FYI. :) David

[jQuery] Re: slideToggle weirdness - also Easing question

2008-01-26 Thread David Serduke
I guess I usually set my own margin so I haven't seen it. In any case try those two changes and see if that fixes your problems. It seemed to work in my tests. Good luck. :) David

[jQuery] Re: howto properly rebind hover

2008-01-26 Thread David Serduke
Looks like you already figured it out but yes, with 1.2.2 hover now binds mouseenter and mouseleave. Also unbind('hover') shouldn't do anything since hover() is a helper function not an actual event so that part shouldn't be necessary. David On Jan 25, 6:18 pm, h0tzen <[

[jQuery] Re: Is there a .new() ?

2008-01-26 Thread David Serduke
I haven't done the tests. David On Jan 26, 7:17 am, Karl Swedberg <[EMAIL PROTECTED]> wrote: > On Jan 25, 2008, at 10:13 PM, David Serduke wrote: > > > > > How about > > > $("").attr({id:"myid", > > name:"myname"}).va

[jQuery] Re: Is there a .new() ?

2008-01-25 Thread David Serduke
pe be set. So you have to specify the type in the inital jQuery call as shown above. David On Jan 25, 5:42 pm, "Matt Quackenbush" <[EMAIL PROTECTED]> wrote: > Hello, > > When my form is submitted, I want to add a couple of hidden form fields to > the DOM.  I know that I

[jQuery] Re: setTimeout / clearTimeout question...

2008-01-23 Thread David Serduke
; } $(document).ready(function () { addHoverHide("some_link", "this_layer"); addHoverHide("some_other_link", "this_other_layer"); }); Untested but the idea should work. Good luck. David On Jan 23, 6:42 pm, gr00vy0ne <[EMAIL PROTECTED]> wrote: >

[jQuery] Re: clone() problem in IE7

2008-01-22 Thread David Serduke
Check out this ticket and the proposed patch to see if it fixes your problem. http://dev.jquery.com/ticket/2184 David On Jan 22, 4:36 pm, Jason Davies <[EMAIL PROTECTED]> wrote: > Does anyone know of a workaround? > > Jason > > On Jan 21, 3:37 pm, Leu <[EMAIL PROTECTE

[jQuery] Re: Ajax scoping problem

2008-01-22 Thread David Decraene
ns success (asynchronous). David

[jQuery] Re: Ajax scoping problem

2008-01-22 Thread David Decraene
why not: var myarray = new Array(); function handleXML(xml) { $(xml).find("something somethingelse").each(function(){ myarray.push( $(this).text()); }); Can't see why that wouldn't work. David http://OntologyOnline.org On Jan 22, 11:53 am, "[EMAIL PROT

[jQuery] Re: xml parsing - what am i doing wrong?

2008-01-21 Thread David Decraene
scape[title="'+UI.section+'"]', datascape.anchors); var dsAnchorVar = $('item[title="' + $proj + '"]',thisDS).parents('col').attr('title'); $.log("anchor "+$proj+"= "+ dsAnchorVar ); } $.

[jQuery] Re: xml parsing - what am i doing wrong?

2008-01-21 Thread David Decraene
the get is asynchronous, meaning that datascape.getAllAnchors is returned (nothing/undefined) before the ajaxall (get) returns success. On Jan 21, 3:41 pm, "Alexandre Plennevaux" <[EMAIL PROTECTED]> wrote: > Hello, > > i'm loading a bit of xml and i'm trying to use the loaded data, but i 'm > u

[jQuery] Re: jQuery 1.2.2 Released: Happy 2nd Birthday!

2008-01-15 Thread David Serduke
> Subject line says "1.1.2". Thought this was a parody post.. :) =P

[jQuery] Re: jQuery + PHP MCV Framework

2008-01-15 Thread David
I just change the url in the plugins ajax calls. It isn't that difficult to find and change. -- David dynegara schreef: Hi guys, is anyone there using jQuery with php mcv framework like CodeIgniter / Cake ? how do you guys solving the problem url param generated by jquery example: ab

[jQuery] Re: checkbox and toggle function

2008-01-11 Thread David McFarland
On Jan 11, 2008, at 9:18 AM, jeff w wrote: > > yeah, > > I am having the same issue. > > Anyone have a solution?? check the discussion archives. there are two solutions posted: http://groups.google.com/group/jquery-en/browse_thread/thread/270e0659ae6c72ac/5208edce49f105c8?lnk=gst&q=toggle()+ch

[jQuery] Re: using serialize function on tag

2008-01-11 Thread David White
venext LOOP rst.Close() Set rst = Nothing %> The problem I get now is that it creates a list in the correct order after I've moved an item then adds the moved item to the end of the list as well. I can't seem to figure out how its doing this to correct this. David

[jQuery] using serialize function on tag

2008-01-10 Thread David White
I'm pretty new to jQuery and have figured out how to make a sortable list update to a database using Interface for jQuery 'http:// interface.eyecon.ro/docs/sort', but I want to see if the same functionality is available with the jQuery UI. I have most of the code completed I'm just stuck using th

[jQuery] Re: toggle function on checkbox

2008-01-08 Thread David McFarland
> > > > $(document).ready(function(){ > $("#precheck").toggle( > function () { >$(".preregbox").show('slow'); > }, > function () { >$(".preregbox").hide('slow'); > } > ); > }); I've had that problem too and switched to this structure: $('input#precheck').click(f

[jQuery] Re: jquery remove() not removing

2008-01-08 Thread David McFarland
On Jan 8, 2008, at 7:07 AM, justinteractive wrote: > > Hi folks, > > I'm using remove() to remove a list, then re-creating a list using the > same id. Remove does not appear to be actually removing the instance. > > If I check for the element, it returns true, but if I try to work with > it noth

[jQuery] Re: $('table tr').hover() not working in IE

2008-01-07 Thread David McFarland
> > > <> >$('table tr').hover( >function() {$(this).addClass('hover');}, >function() {$(this).removeClass('hover'); >}); > <> > > > This is my CSS: > > <-

[jQuery] Toolbar jquery

2007-12-29 Thread David
I can find plugin jquery as toolbar ?? David.

[jQuery] Re: Plugin: Tag Suggestions

2007-12-28 Thread David
Nice work, on IE6 the suggested tags are not in the middle of the input but are pushed a bit down. I noticed a 404 message for the ajax example. -- David Remy Sharp schreef: I've just posted up a plugin a wrote a couple of months ago for a personal project that allows del.icio.us lik

[jQuery] Re: UI draggable working but not without errors

2007-12-21 Thread David Decraene
I'm getting the same error... On Dec 12, 7:30 pm, Peter Bengtsson <[EMAIL PROTECTED]> wrote: > I download the jquery-ui.min.js by just selecting the Draggable plugin > which produced an 18K file. > $('table.draggable').draggable(); > actually works just fine on my page. It even works in IE 6. > >

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

2007-12-19 Thread David McFarland
>> > > Don't forget that every row has rowIndex and sectionRowIndex > properties and every cell a cellIndex property. These are very much > faster than CSS-style selectors, e.g.: > >$($('#tableID').rows[x].cells[y]).text(); Hi Rob, I've never seen that syntax before, and I can't get it to w

[jQuery] Re: Looping ajax requests

2007-12-19 Thread David Decraene
the alerting is because of the asynchronous callback: it only triggers success when it receives response from the server, and by that time i already equals 5 (already looped multiple times), I think. Why you do not get that last page beats me, try for (var i=1;i<6;i+ +) David Decraene h

[jQuery] Re: New jQuery release, but what about documentation

2007-12-17 Thread David Serduke
other forms (like the api browser) back in line with the version. But in the end the wiki is the documentation. All forms of documentation will only be as good as our community can make it. David

[jQuery] Re: Events don't work after load content using $.get

2007-12-17 Thread David McFarland
On Dec 17, 2007, at 11:56 AM, LeonL wrote: > > > Hi everyone, > > I have an event that is not being listened and I can't figure out why. > > The thing is that everything is working fine while all my html code is > static, but as soon as I modified it with some data pulled from the > db, the >

[jQuery] Re: Clone dont work. Why?

2007-12-15 Thread David Serduke
At least one error is here: var e = $(this).parent()[0]; should be just var e = $(this).parent(); You were converting the jQuery object to a DOM object then trying to run jQuery methods on it. David On Dec 15, 2:04 am, Antonio Jozzolino <[EMAIL PROTECTED]>

[jQuery] Re: Is it possible get the data from ajaxSuccess?

2007-12-14 Thread David Serduke
ess functions is the event. Then comes the request and settings. So iirc that would be: $("#target").ajaxSuccess(function(e, request, settings) { if (request.responseText == "success") { alert("Got a successful response"); } } Also untested. :) David

[jQuery] Re: sound library for jQuery

2007-12-14 Thread David McFarland
> >> Has anyone developed a sound plugin for jQuery like the one Prototype >> has? >> >> > Give this a try: http://dev.jquery.com/view/trunk/plugins/sound/ > > A port of the scriptacolous sound.js library, based on jQuery and > some slight API changes. Works for me on IE6, FF2, Safari 3 and >

[jQuery] Re: loading xml in IE6/IE7 on a CD

2007-12-13 Thread David Serduke
.text()); } }); Something to try at least. :) David On Dec 13, 11:09 am, "Benjamin Sterling" <[EMAIL PROTECTED]> wrote: > Not yet, I think I am going to have to check to see if it is IE and use IE > specific code. I'll let you know what I come up

[jQuery] Re: General question regarding AJAX and callbacks

2007-12-13 Thread David Decraene
You could make a synchronous ajax call instead, but it will lock the browser until a response is received: something roughly along these lines: $.ajax({ type: "GET", url: "validate.php", data: {value: somevalue} async: false, dataType: somedatatype, success: function(data){...} }); or maybe try

[jQuery] Re: [PLUGIN] JAddTo

2007-12-12 Thread David
Nice plugin but the add to example on the page has a spurl links for the simpy and smarking icons. - David Jason Levine schreef: This is my first JQuery plugin in awhile. I needed to put up a series of "Add To Digg"-style links on the http://www.ShootingForACause.com/2008/ Shoo

[jQuery] Re: Alter Status Message

2007-12-11 Thread David McFarland
> > > > $(document).ready(function() { > $("#main #welcome a").hover( > function() { > var href = $(this).attr('href'); > var a1 = href.split("DURL="); > if (a1 != href) { > window.status = a1[1]; > } > } > );

[jQuery] Re: .click() issue

2007-12-10 Thread David McFarland
> > Works: > > $(".flag").hide(); > > Doesn't work (wont alert): > > $(".flag").click(function (){ > alert("hello"); > }); > > WORKS: > $(".flag").click(function (){ > alert("hello"); > }).click(); > > It seems like the browser just doesn't see the click event! Weird.. What does the HTML look lik

[jQuery] Re: jQuery Magnifier for multiple divs

2007-12-10 Thread David Decraene
20', > baseline:0, > > }); > }); > > > > > > > > > > > > > > > > > > > > > > > > > -Enrique- > > On Dec 5, 1:47 am, David Decraene <[EMAIL PROTECTED]> wrote: > > >

[jQuery] Re: xml parsing bug or feature?

2007-12-06 Thread David Serduke
parse it so: $("text") won't work in IE and is buggy in FF. The xml created by an ajax request should work fine though. David On Dec 6, 8:37 am, Equand <[EMAIL PROTECTED]> wrote: > but what's the difference? > do i need to write separate parsing functions for o

[jQuery] Re: jQuery Magnifier for multiple divs

2007-12-05 Thread David Decraene
I need to admit I am not familiar with the magnifier code, but: Why do you have two references to document.ready? I would try combining them, might already solve some problems: jQuery(document).ready(function(){ $("#example").magnifier({ overlap:true, magni

[jQuery] Re: hover and className

2007-12-05 Thread David Serduke
code while testing but thought my test might be useful to you. http://www.exfer.net/test/jquery/hover_test.html Of course this isn't a hover state system by any means but hopefully can help you get past the current hurdle. David

[jQuery] Re: how to append() to a textarea

2007-12-04 Thread David Serduke
ng and you can't see it but are rather checking the generated source instead which isn't supposed to change. Try out this example: http://www.exfer.net/test/jquery/textarea_append_test.html David On Dec 4, 8:02 am, cfdvlpr <[EMAIL PROTECTED]> wrote: > OK, I tried $("

[jQuery] Re: how to append() to a textarea

2007-12-03 Thread David Serduke
I'd try $("textarea").val($("textarea").val() + txt); David On Dec 3, 4:27 pm, cfdvlpr <[EMAIL PROTECTED]> wrote: > append() doesn't seem to work. I also tried this function that was > mentioned in another thread here by John and that doesn't

[jQuery] Re: jQuery.extend not working for function as target,is it a bug?

2007-11-30 Thread David Serduke
Ah the beauty of bug fixes. Fix one thing and break another. This was a change from changeset [3841]. There were some issues with deep copy and this was one of the changes to prevent the problems. The problem you are having should be fixed in [3985]. Sorry bout that. David

[jQuery] Events double firing?

2007-11-27 Thread David
http://localhost/allonenet/index.html If you mouse over the globe in the top left, you'll see it fades in, then fades out, then fades back in. When you mouse off, you'll see it fade out, then back in, then back out. The relevant code is: $('body').append(''); $('#fill').load('public/launcher

[jQuery] Re: Detecting elements with click handlers

2007-11-27 Thread David Serduke
{}; var clicks = handlers["click"]; for (var h in clicks) { clicks[h].call(elem); } that I think (totally untested) would call all the event handlers attached by jquery. Dunno if it helps but it was interesting looking in to it. :) David On Nov 27, 9:44 am, "Glen Lipka" <

[jQuery] Re: OT: Somebody's spam filter is doing me wrong

2007-11-13 Thread David Serduke
Getting spammed by anti-spam software. What's the world coming to? So can you mark it as spam to make it go away? Of course it could potentially drag down the whole internet as an infinite loop of anti- spam messages get sent back and forth! Or not. :) David

[jQuery] Re: Problems with multiple animations and timeouts

2007-11-13 Thread David Serduke
I'm not positive this is the problem but try putting a var in front of the nextTarget assignment. Right now it looks like a global variable in the code fragment you posted. var nextTarget = targetItem.next(); David On Nov 13, 8:18 am, serializer <[EMAIL PROTECTED]> wrote: > Hi

[jQuery] Re: jqGrid update

2007-11-13 Thread David
Tony it's super super. I think on column client it's possible show combobox?? On Nov 12, 1:59 pm, Tony <[EMAIL PROTECTED]> wrote: > Just now I have updated the jqGrid. > The news are: > - Row editing > - From now jqGrid can accept XML and JSON data with arbitrary > structure using a xmlReader an

[jQuery] Error jqgrid

2007-11-04 Thread David
i use jqgrid for test,but i have this error: " uncaught exception: Permission denied to call method XMLHttpRequest.open" when open from tree to "Loading data". In FF is problem ,but in IE or Opera is ok. Why ?

[jQuery] Re: Mystery "jquery" attribute and behavior...

2007-10-23 Thread David Serduke
Perhaps try :nth-child(even) instead. http://docs.jquery.com/Selectors/nthChild Look at the demo on the examples page to see how it works compared to :even David

[jQuery] Re: g has no properties?

2007-10-21 Thread David Foster
The hover method requires two arguments; an error will be thrown on blur if the second argument is omitted. The first argument is a function to be executed on mouseover, the second, a function to be executed on mouseout. By the looks of things, you do not require an action on mouseout, and if tha

[jQuery] Re: queue, dequeue, stop, and the endless mouseovers

2007-10-17 Thread David Serduke
No problem at all On Oct 16, 7:54 pm, Karl Swedberg <[EMAIL PROTECTED]> wrote: > I think I'm going to write up a quick entry about what I came up > with. Mind if I link to yours as an alternative?

[jQuery] Re: queue, dequeue, stop, and the endless mouseovers

2007-10-17 Thread David Serduke
Well this google group has been eating my posts all day. One last attempt (I quit and rejoined the group). Is this functionality what you were thinking of? http://www.exfer.net/test/jquery/tabslide/ David

[jQuery] Re: queue, dequeue, stop, and the endless mouseovers

2007-10-16 Thread David Serduke
I'll look at it again then. I was trying to duplicate the functionality of the mootools menu and it has that same "design flaw". You don't actually have to move out and back in again but rather just move within the tab since it is mousemove and not mouseover. David On O

[jQuery] Re: queue, dequeue, stop, and the endless mouseovers

2007-10-16 Thread David Serduke
Hmm, ok, I'll try this google group in Firefox once. I've posted 4- ish posts today that haven't gone through. Anyway as I said in one of them, I took some liberties with the code, but is this more like what you were going after? http://www.exfer.net/test/jquery/tabslide/ David

[jQuery] Re: queue, dequeue, stop, and the endless mouseovers

2007-10-16 Thread David Serduke
Hmm, this google group seems to be eating my messages from the browser client so now I'll try emailing to it and see if that is any different. Anyway, see if this is more like the design you were interested in. http://www.exfer.net/test/jquery/tabslide/ David P.S. Beware at some point

[jQuery] Re: queue, dequeue, stop, and the endless mouseovers

2007-10-16 Thread David Serduke
Sorry but I took some liberties with your code. Hopefully that is ok. http://www.exfer.net/test/jquery/tabslide/ I'd be interested to know if that is more like what you wanted. David On Oct 16, 9:41 am, Karl Swedberg <[EMAIL PROTECTED]> wrote: > Hi David, > > I tried

[jQuery] Re: queue, dequeue, stop, and the endless mouseovers

2007-10-16 Thread David Serduke
Hmm, why do my posts not go through? http://www.exfer.net/test/jquery/tabslide/ David

[jQuery] Re: queue, dequeue, stop, and the endless mouseovers

2007-10-16 Thread David Serduke
Ack, nevermind that last comment about mousemove. I looked at the wrong even handler. David

[jQuery] Re: jqGrid new version

2007-10-16 Thread David
Tony , in the future it's possible support cell editing.? On Oct 16, 7:28 pm, Tony <[EMAIL PROTECTED]> wrote: > David, > Sorry, jqGrid does not support cell editing. > > On 13 Окт, 20:20, David <[EMAIL PROTECTED]> wrote: > > > Tony it's possible updat

[jQuery] Re: queue, dequeue, stop, and the endless mouseovers

2007-10-16 Thread David Serduke
ve over a panel and move back quickly (while it is still animating) and end up pointing at a closed menu while the open one is not closed. That will change as soon as you move the mouse though so perhaps it isn't so awful. David On Oct 15, 5:47 pm, Karl Swedberg <[EMAIL PROTECTED]> wr

[jQuery] Re: jqGrid new version

2007-10-13 Thread David
Tony it's possible update one cell (that input text or combo select) from database? On Oct 7, 4:35 pm, Tony <[EMAIL PROTECTED]> wrote: > I have released a new version ofjqGrid. > Demo page here:http://trirand.com/jqgrid/jqgrid.html > Home page:http://www.trirand.com/blog/ > > Enjoy.

[jQuery] Re: jqGrid new version

2007-10-13 Thread David
Tony, it's possible update one cell (that input or combo select) from database ?

[jQuery] Re: value of

2007-10-11 Thread David Duymelinck
To stop the link from executing. -- David Duymelinck Sharique schreef: @Juan $("a").html() is always returning text of first , here "tata" @ziz alert($(this).text()); works, thanks. Why return false? -- Sharique On Oct 10, 2:30 pm, zizi <[EMAIL PROTECTED]> wrote:

[jQuery] Re: value of

2007-10-10 Thread David Duymelinck
val is used for input fields, to get the text inside a tag you have to use html or text depending on what you are after. -- David Duymelinck Sharique schreef: What I want to is :When user click on a link it will show text inside the tag. (ie. when user click in "more" it will

[jQuery] Re: [Announce]: jQuery and John Resig featured on InfoWorld

2007-10-05 Thread David
Oh yes of course, anyway Paul should get a server farm all the same :) they can split it between them :) -- David Duymelinck Rey Bango schreef: Not Klaus. Paul Bakaus. Rey David wrote: Klaus only got a laptop ??? He should have got a server farm to fill it with all his ideas, projects

[jQuery] Re: [Announce]: jQuery and John Resig featured on InfoWorld

2007-10-05 Thread David
Klaus only got a laptop ??? He should have got a server farm to fill it with all his ideas, projects and good advice. -- David Duymelinck Karl Swedberg schreef: Hey folks, Looks like John Resig was interviewed for an article on InfoWorld. Some big news about possible attempt to

[jQuery] Re: 1.2 bug? $(window).height(); always the same as $('body').height();

2007-10-02 Thread David Serduke
Hmm my first comment from a half hour ago never showed up. Anyway, there was some discussion on this topic here: http://groups.google.com/group/jquery-dev/browse_thread/thread/1884fa6ed308f40/d44fee44ffb4028f David On Oct 2, 2:33 pm, mundizzle <[EMAIL PROTECTED]> wrote: > I have a

[jQuery] Re: 1.2 bug? $(window).height(); always the same as $('body').height();

2007-10-02 Thread David Serduke
There was a discussion about this issue on the dev group. http://groups.google.com/group/jquery-dev/browse_thread/thread/01884fa6ed308f40 David On Oct 2, 2:33 pm, mundizzle <[EMAIL PROTECTED]> wrote: > I have a page with content that goes below the fold. > > I'm trying to

[jQuery] Re: What plugins are ready for prime time

2007-10-02 Thread David Pollak
lift is a secure, easy, powerful web framework built using the Scala Functional/OO language. See http://liftweb.net On Oct 2, 10:26 am, Jörn Zaefferer <[EMAIL PROTECTED]> wrote: > David Pollak schrieb: > > > > > On Oct 1, 12:48 pm, Jörn Zaefferer <[EMAIL PROTECTED]&

[jQuery] Re: What plugins are ready for prime time

2007-10-01 Thread David Pollak
On Oct 1, 12:48 pm, Jörn Zaefferer <[EMAIL PROTECTED]> wrote: > David Pollak schrieb:> although I had to rewrite all the $ references to > jQuery so I could fit Scriptaculous, jQuery, and BlockUIin the same browser. > > Why that? BlockUI uses a handy trick to be ab

[jQuery] What plugins are ready for prime time

2007-10-01 Thread David Pollak
gins should I be looking at the meet my criteria? Thanks, David

[jQuery] Re: When will the API be updated for 1.2.1?

2007-09-28 Thread David Duymelinck
I asked once before if it was possible to have a cheatsheet of the different jQuery versions and i would gladly want to donate my time to make this happen , just give me some direction how to find the apis for the different versions and i'm off :) -- David Duymelinck Brandon Aaron sc

[jQuery] A few suggestions for the password strength plugin

2007-09-24 Thread David Duymelinck
a bad password by default? Otherwise i think this is a great plugin, so keep up the good work. -- David Duymelinck [EMAIL PROTECTED]

[jQuery] Re: Is there any better way to do that?

2007-09-21 Thread David Duymelinck
}); }); with following html show/hide prices Content show/hide prices Content show/hide prices Content ... show/hide prices Content Less html and less javascript -- David Duymelinck Owca schreef: It's my first script using jQuery. $(document).ready(function(){ $("a").filt

[jQuery] Comet calls/multiple open HTTP connections

2007-09-19 Thread David Pollak
ser tabs/windows are making a request on the same server? Third, is there a priority for POST rather than GET or are they treated the same way? Fourth, is there a way to kill the pending Comet request when I know I'm about to do an AJAX request? Fifth, are there any questions I'm not asking that I should? Thanks, David

[jQuery] Update div

2007-09-19 Thread David
How update multiple div by ajax from php?

[jQuery] Re: Opinions on YUI?

2007-09-19 Thread David Duymelinck
I'm wondering Russia and the Ukraine are the top regions but no Ukrainian or Russian city is in the top ten :) -- David Duymelinck John Resig schreef: Some random, non-code reasons: - jQuery has significantly wider adoption and user base. http://www.google.com/trends?q=jquery%2C+yahoo+ui

[jQuery] UI Photo Demo on Safari

2007-09-19 Thread David Pollak
Howdy, I'm wicked impressed with the photo demo of the new jQuery UI kit. Unfortunately, it doesn't seem to work on Safari. Is this a known issue (I couldn't find mention on this list with a couple of searches)? If it is, what's the ETA for a fix? Thanks, David

[jQuery] Re: docs url

2007-09-18 Thread David Duymelinck
I was thinking about hackable urls similar with the UI docs. Now you have for example http://docs.jquery.com/Core after the change it would be http://docs.jquery.com/jQuery/Core. -- David Duymelinck Scott Sauyet schreef: David Duymelinck wrote: I saw the UI documentation got the http

[jQuery] docs url

2007-09-18 Thread David Duymelinck
Hello, I saw the UI documentation got the http://docs.jquery.com/UI url but the jQuery docs still have the http://docs.jquery.com/Main_Page url maybe that could be changed to http://docs.jquery.com/jQuery ? it's just an idea. -- David Duymelinck [EMAIL PROTECTED]

[jQuery] Re: Thanks for bringing back eq() in 1.2.1

2007-09-17 Thread David Duymelinck
uot;); Using a method you would have to do that so you save some bytes. I don't care if i have to use a selector or a method, i agree with you methods come more natural for long time programmers, i'm just trying to understand why some functionalty decisions are made. -- David Steph

[jQuery] Re: idea to track plugin updates: myJquery.com

2007-09-17 Thread David Duymelinck
with the jQuery UI they have put another load on their shoulders and their main concern should be jQuery, the site and now jQuery UI. -- David Alexandre Plennevaux schreef: hi all, This email presents a suggestion for a community tool, maybe it's already under preparation, AFAIK, it i

[jQuery] Re: Thanks for bringing back eq() in 1.2.1

2007-09-17 Thread David Duymelinck
I have to agree with Stephan about the slice method, it's not intuitive. But why do you want to use eq/lt/gt as methods if you have them as selectors? Can you give an example where a method can do more than a selector? -- David Stephan Beal schreef: On Sep 17, 9:36 am, Bernd Ma

[jQuery] jQuery UI praises and questions

2007-09-16 Thread David Duymelinck
jQuery UI list. -- David Duymelinck [EMAIL PROTECTED]

[jQuery] Re: New plugin - Linked Selects

2007-09-15 Thread David
Please put in arhive full code(database) David. Rob D wrote: > Hi, > > Sometime ago I built my first plugin called linkedSelects and I would > finally like to > announce it to the list. > > You can see it in action and download the code here: > > http://www.msxhost.com

[jQuery] Re: New plugin - Linked Selects

2007-09-15 Thread David
Great plugin but i noticed when you select a new state the city select remains. Is it possible to remove the value of children selects? -- David Rob D schreef: Hi, Sometime ago I built my first plugin called linkedSelects and I would finally like to announce it to the list. You can see

[jQuery] Re: jqmodal and livequery

2007-09-14 Thread David Duymelinck
$('a.thickbox').livequery(function(){ $this = $(this); $img = $('img',$this).attr("src"); $('').appendTo('#modalWindow'); $('#modalWindow').jqm().jqmShow(); }); should work. -- David Alexandre Plennevaux schreef: hi! i hav

[jQuery] Re: jQuery DOM slowness

2007-09-14 Thread David Cramer
Alright thanks for all the help, good information to know :) On Sep 13, 2:53 pm, Jörn Zaefferer <[EMAIL PROTECTED]> wrote: > Michael Geary schrieb:> If you need event handlers on the elements, assign a > single event handler to the table and use event bubbling to catch events for > > all of the

<    1   2   3   4   5   6   7   >