[jQuery] Re: Problem with change()

2007-08-27 Thread Karl Rudd
Is that a question? If, yes, then what you want is LiveQuery http://jquery.com/plugins/project/livequery Karl Rudd On 8/28/07, atomicnuke <[EMAIL PROTECTED]> wrote: > > Yeah, guess autocomplete will work, to lazy to write a timer function, > lol. Quick unrelated question, I ran across a plugin f

[jQuery] Re: [UPDATE] jqGalView (yet another image gallery)

2007-08-27 Thread Juha Suni SC
Very nice work Benjamin! An excellent plugin. Extremely easy to use, logical and provides a polished, high quality, professional looking result. I'm amazed if we don't start seeing this in use around the web. A lot :) A spectacular showcase for jQuery and it's plugins also. We'd really just nee

[jQuery] Re: [UPDATE] jqGalView (yet another image gallery)

2007-08-27 Thread Alexandre Plennevaux
looking real good Benjamin! i haven't followed the whole discussion so excuse me if this has already been mentioned before. - i find it disturbing that clicking on "open" does not actually work _ you can click on the whole thumbnail area but the "open" word. - i find the launch in a separate

[jQuery] Re: Problem with change()

2007-08-27 Thread atomicnuke
Yeah, guess autocomplete will work, to lazy to write a timer function, lol. Quick unrelated question, I ran across a plugin for jQuery that if you inserted content in with Ajax the links won't be recognized by jQuery, but the plugin helps to fix that.

[jQuery] Re: Problem with change()

2007-08-27 Thread Karl Rudd
You could either deactivate the autocomplete functionality () or you could poll the text fields using a timer. Karl Rudd On 8/28/07, atomicnuke <[EMAIL PROTECTED]> wrote: > > I wrote a function that check text fields in a form using change, it > works for the most part. But if say they go to the

[jQuery] Problem with change()

2007-08-27 Thread atomicnuke
I wrote a function that check text fields in a form using change, it works for the most part. But if say they go to the email field and the remember function of the browser pops up and they click that instead of typing it, the change method doesn't detect it. There a way to deal with this?

[jQuery] [UPDATE] jqGalView (yet another image gallery)

2007-08-27 Thread Benjamin Sterling
After taking a good bit of advice, I made changes to the jqGalView plugin and I think I have it at a very good place now. Special thanks to those that gave great feedback, I took what you had to say and think I have a winner now. This community breads greatness :) http://benjaminsterling.com/200

[jQuery] Re: Not Blowing My Own Horn jQuery Super GUI Example

2007-08-27 Thread Benjamin Sterling
Mitchell, That is looking sweet, don't have time to really dig into it, but it is looking good. One thing I notice, Acadian Flycatcher and then on the music icon, it plays the sound, but then keeps repeating it even after I left that "tab". Nice work. Ben On 8/27/07, Mitchell Waite <[EMAIL PROT

[jQuery] Not Blowing My Own Horn jQuery Super GUI Example

2007-08-27 Thread Mitchell Waite
Its all jQuery plugins. The Home tab gives the names and credits, and its not done yet. I think this is the best example of using jQuery in an interface, though I am sure a more experience programmer could do a better job. I think we would start a contest to see who can use the most number of jQuer

[jQuery] Re: slideDown causes Java applets to reload on Firefox

2007-08-27 Thread Karl Swedberg
Very interesting. I wish I had checked the bug tracker when someone reported a similar problem with the clueTip plugin causing a Flash object to reload. I just assumed I was doing something dumb. What surprised me about that case in particular was that the Flash object only reloaded when th

[jQuery] Re: jQuery beginer in search of magic...

2007-08-27 Thread zapatino
Ok, now it work in safari as well. had to close the image tag in your script. target.empty().append(" missing), don't bother try to find out anymore about this. thanks again. On Aug 27, 4:59 pm, "Glen Lipka" <[EMAIL PROTECTED]> wrote: > Something like this?http://www.commadot.com/jquery/easebo

[jQuery] Re: jQuery beginer in search of magic...

2007-08-27 Thread zapatino
1. Several rows of thumbnails, Each row is a group. 2. Click on a thumbnail and it shows that large image underneath, and hides any other image that was open. 3. Two images can be open, but only in different rows (groups). that is exactly right and exactly what i'm trying to do. but as

[jQuery] Re: jQuery beginer in search of magic...

2007-08-27 Thread zapatino
Well thanks again Glen. i checked the code behind your solutions and it is depressingly simple. i always end up trying thing really complicated, but i suppose it is the way you learn. so i'm going to get some inspiration in your code. there is just a little thing, this code does not work in saf

[jQuery] Re: hover and hoverIntent

2007-08-27 Thread Dan Evans
The function it seems like you're writing can be much simpler, something like: $('#menu li a').mouseover( function(){ window.status = $(this).attr('href'); }); But that still won't work because the hover function still forces that function to return false to prevent the normal browser prob

[jQuery] Problem dragging forms

2007-08-27 Thread polycarp
Hey everybody! I'm new to JQuery and have been searching the net for info on the easydrag plugin, but nothing seems to help. My problem is pretty simple: how do you put a form into a draggable div? Once the div is set to be draggable, you no longer have access to the form fields for entry. I've t

[jQuery] document.ready fires too late in IE

2007-08-27 Thread aj
Hi, I'm using jQuery's document.ready in a page with some external iframes (ads). In IE 6 & 7 document.ready fires when all iframes are loaded ,while on other browser the event starts after loading of the parent site is finished. Is this a known issue, any hint how to avoid this behavior in IE?

[jQuery] Help serializing form to array

2007-08-27 Thread bweaverusenet
Hi. What is the voodoo to build an array for a JSON submit from a bunch of form fields? Okay, I'm building the form dynamically from the fields in a mysql DB, with input/@id set to the field name. The following naive approach doesn't work, but will give you an idea of how I'm grabbing what I wan

[jQuery] Re: pnGFix Plugin with Jquery 1.1.4

2007-08-27 Thread voltron
Thanks Sam, I´ll try the other one out. On Aug 27, 11:14 pm, "Sam Sherlock" <[EMAIL PROTECTED]> wrote: > AFAIK there are two pngFix plugins for jquery. > > http://khurshid.com/jquery/iepnghack/ > > Is the one I am using, it works (as far as I have tested) with latest > jQuery, you can't repeat t

[jQuery] Re: Toggling the html of an element

2007-08-27 Thread Dan Evans
One reason why the others may not have worked is because .toggle() assigns a click handler to an element. It is the same as writing .click() except that it takes two functions instead of one and it alternates them. So the original way it's written says, "When the user clicks this thing add a new c

[jQuery] Re: document.location in 1.1.4

2007-08-27 Thread Theodore Ni
Beside telling people to use a string, the obvious solution would be to call toString on whatever the function receives. I suppose it could be possible to parse the result to see if it is a real string or not. Does anyone know if something like this is cross browser: var obj = {id: 1, name: 'Ted

[jQuery] Re: divert click to an anchor

2007-08-27 Thread tru.thought
Actually, I don't believe that this is necessarily a browser problem. I ahve dynamic links all over a site that use, and previous version of jquery Click() function fired the link in the same manner as a click on the link itself, nothing has changed in my code, and an upgrade to the newest ver

[jQuery] Re: jQuery Interface Highlight Bug?

2007-08-27 Thread Karl Swedberg
You could try using the highlightFade plugin instead. It does pretty much the same thing. Take a look here: http://jquery.offput.ca/highlightFade/ --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Aug 27, 2007, at 3:30 PM, Brandon! wrote: Ouch, a 6 mon

[jQuery] Re: textareas and contains()

2007-08-27 Thread Stephan Beal
On Aug 28, 12:51 am, MrNase <[EMAIL PROTECTED]> wrote: > What I was trying to do here was to make a mootools example in jQuery. > > In mootools, all you need is: > > if(txt.val().contains('hello')) txt.trigger('burn', 'hello world!'); It would seem that val() returns a String object and that moot

[jQuery] Re: textareas and contains()

2007-08-27 Thread Stephan Beal
On Aug 27, 3:20 pm, MrNase <[EMAIL PROTECTED]> wrote: > if ($('#myTextarea').val().indexOf('hello') != -1) { > log.empty().html('test'); > } > else if > ($('#myTextarea

[jQuery] Re: slideDown causes Java applets to reload on Firefox

2007-08-27 Thread Karl Rudd
The bug still exists. It occurs for any embedded content (Flash, Quicktime, Java applets, etc). Here are two links to two linked bugs... one's open for the past 6 years :( move plugins to content - plugins should withstand a reframe of the object frame https://bugzilla.mozilla.org/show_bug.c

[jQuery] Re: OT CSS skins

2007-08-27 Thread Sean Catchpole
oh, I had no idea. Thanks for setting me straight. ~Sean On 8/27/07, John Resig <[EMAIL PROTECTED]> wrote: > > > Umm, just FYI - those images are expressly copyrighted and are not > allowed to be distributed. Sounds like they need to be re-made from > scratch in order for them to stay in jQuery S

[jQuery] Re: slideDown causes Java applets to reload on Firefox

2007-08-27 Thread Karl Rudd
There was (may still be) a problem with Firefox reloading / restarting Flash elements or Java applets if the element/applet or any of it's parents changed position or display state (such as display: none -> display: block). I will try and find the link to the bugzilla bug. Karl Rudd On 8/28/07,

[jQuery] Re: OT CSS skins

2007-08-27 Thread John Resig
Umm, just FYI - those images are expressly copyrighted and are not allowed to be distributed. Sounds like they need to be re-made from scratch in order for them to stay in jQuery SVN. --John On 8/27/07, Sean Catchpole <[EMAIL PROTECTED]> wrote: > An interesting post, thank you. > I have created

[jQuery] Re: OT CSS skins

2007-08-27 Thread Sean Catchpole
An interesting post, thank you. I have created a revised version that uses only one image: http://dev.jquery.com/view/branches/sean-dev/pro/pro.html ~Sean On 8/27/07, Alexandre Plennevaux <[EMAIL PROTECTED]> wrote: > > if anyone is interested, Stu Nicholls, one of the most creative css > hackers

[jQuery] Re: Toggling the html of an element

2007-08-27 Thread Olaf Bosch
voltron schrieb: Hi all, I am toggling an element using A tags, I would like the A tag to display "Show" or "Hide" depending on the state. my proble is, I cannot get this to work properly: toggle is click, see: $('#toggleTwo').toggle(function(){ $('#rubricTwo').hide();

[jQuery] Re: A Quick Thank You to the jQuery UI team

2007-08-27 Thread Erik Beeson
Floggings will continue until morale improves. On 8/27/07, Smith, Allex <[EMAIL PROTECTED]> wrote: > > Wait till he is finished working on UI before you beat him... Then > proceed. > > -Original Message- > From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On > Behalf Of Rey Bang

[jQuery] Re: A Quick Thank You to the jQuery UI team

2007-08-27 Thread Smith, Allex
Wait till he is finished working on UI before you beat him... Then proceed. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rey Bango Sent: Monday, August 27, 2007 3:18 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: A Quick Thank You to

[jQuery] Re: JQuery .load() issue, (user error)

2007-08-27 Thread Erik Beeson
I think you need to have a look over the Ajax docs again: http://docs.jquery.com/Ajax I'm not sure what you're expecting to have happen. What do you mean "returns an array to an HTML template"? Your $.ajax(...) call will get the contents of get_photos?vehicle_id=... and pass it as a parameter to

[jQuery] Re: JQuery .load() issue, (user error)

2007-08-27 Thread Steve Finkelstein
Hi Michael, Thanks for the reply. Don't think that did the trick unfortunately. I moved the code out into with the following: $(function() { $('#showPhotos').show("slow", function() { $.ajax({ data: "vehicle_id="+uri->segment(4); ?>,

[jQuery] Re: textareas and contains()

2007-08-27 Thread MrNase
What I was trying to do here was to make a mootools example in jQuery. In mootools, all you need is: if(txt.val().contains('hello')) txt.trigger('burn', 'hello world!'); Therefore I was looking for a jQuery way to do it but contains() doesn't work as expected. :( On Aug 27, 3:39 pm, Klaus

[jQuery] Re: JQuery .load() issue, (user error)

2007-08-27 Thread Michael Geary
You are trying to reference the showPhotos div in your script before the closing tag for the div. I doubt if the element has been added to the DOM at this point. Move the script after the closing tag and see if that works better. You could also use a $(function() { ...your code here... }); wrapper

[jQuery] Any plugins like googiespell?

2007-08-27 Thread Jack Killpatrick
Hi All, Anyone know if there's a jquery plugin along the lines of: http://orangoo.com/labs/GoogieSpell/ ? TIA, Jack

[jQuery] JQuery .load() issue, (user error)

2007-08-27 Thread Steve Finkelstein
Yes, I know this is my fault. Where though, I'm clueless. If someone can help me recover from my fumble, I'd appreciate it. I have a div that resembles the following: $('#showPhotos').load('get_photos', {vehicle_id: uri- >segment(4);?>}); I'm sending vehicle_id to

[jQuery] Re: A Quick Thank You to the jQuery UI team

2007-08-27 Thread Rey Bango
That's a tentative date but its not set in stone. :) We're still working on some things. Sean will receive his beatings shortly! (whack) Rey Smith, Allex wrote: Doh... Cat's out of the bag. The project is set to release on September the 3rd. Thanks much for all the info. -Origin

[jQuery] Re: A Quick Thank You to the jQuery UI team

2007-08-27 Thread Smith, Allex
Doh... Cat's out of the bag. >The project is set to release on September the 3rd. Thanks much for all the info. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rey Bango Sent: Monday, August 27, 2007 3:03 PM To: jquery-en@googlegroups.com Sub

[jQuery] Re: A Quick Thank You to the jQuery UI team

2007-08-27 Thread Rey Bango
Yep, you haven't been watching the list closely enough...that is, the jQuery UI list. Hop on over to http://groups.google.com/group/jquery-ui and sign up and make sure to take a peak at the roadmap: http://docs.jquery.com/UI/ As for a release date, I've been sworn to secrecy but I can say t

[jQuery] Re: A Quick Thank You to the jQuery UI team

2007-08-27 Thread Smith, Allex
Excellent... can't wait to see it. Allex -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sean Catchpole Sent: Monday, August 27, 2007 2:57 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: A Quick Th

[jQuery] Re: A Quick Thank You to the jQuery UI team

2007-08-27 Thread Andy Matthews
Ooooh.. That's right around the corner. Can't wait to take a look at it. Do you guys have a slick demo presentation suite for these things? Remember that people are going to compare the existing mootools demo suite (and yes, I know that their's is for effects). But "ours" needs to look JUST as ta

[jQuery] Re: A Quick Thank You to the jQuery UI team

2007-08-27 Thread Sean Catchpole
On 8/27/07, Rey Bango <[EMAIL PROTECTED]> wrote: > I know you guys have been busting your tails... Thanks Rey, it's been a lot of fun. On 8/27/07, Smith, Allex <[EMAIL PROTECTED]> wrote: > This may be a dumb question... But is there any release info about > jQuery UI out yet? Screen shots or othe

[jQuery] Re: A Quick Thank You to the jQuery UI team

2007-08-27 Thread Smith, Allex
Rey, This may be a dumb question... But is there any release info about jQuery UI out yet? Screen shots or otherwise? Have I just not been watching the list closely enough? Thanks, Allex -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rey Bang

[jQuery] Re: document.location in 1.1.4

2007-08-27 Thread John Resig
Yeah, that's pretty much exactly it. Not entirely sure how we're going to get around this - this issue has cropped up twice now, with Ajax. --John On 8/27/07, Theodore Ni <[EMAIL PROTECTED]> wrote: > > I have not looked at the code in depth, but I know that 1.1.4 supports > recursive $.extend(),

[jQuery] Re: hover and hoverIntent

2007-08-27 Thread Dragan Krstic
$("li").bind("mouseover",function(){ $("this").find("ul li").bind("mouseover",function(){ window.status = $("this").children("a").attr("href"); }); }); Or $("li").bind("mouseover",function(){ $("this").find("ul li a").bind("mouseover",function(){ window.status = $("this").attr("href"

[jQuery] jquery error on Mac Safari 2 only (maybe 3)

2007-08-27 Thread bleen
site in question: www.nypost.com (scroll down to "most emailed/most popular" on bottom right or "classififeds search" on VERY bottom right) For some reason we keep getting this error: Value undefined (result of expression elm.toSource) is not object. Thoughts? Alex

[jQuery] Re: hover and hoverIntent

2007-08-27 Thread Dan Evans
That's a good thought. But would I attach that to all links inside of the hovered element? In that case wouldn't the code in hover still clobber that and prevent it from being executed? It won't work if I just put that code inside the hover functions because there is no href associated with the el

[jQuery] Re: Tablesorter Questions

2007-08-27 Thread Josh Nathanson
@Josh, Worked perfectly - jQuery is great - even *I* can make sense of it! Ha, far too modest -- you'll be writing your own plugins in short order I bet. -- Josh - Original Message - From: "Peter Bell" <[EMAIL PROTECTED]> To: Sent: Monday, August 27, 2007 12:11 PM Subject: [jQu

[jQuery] Re: Toggling the html of an element

2007-08-27 Thread voltron
thanks for the heads up Dan! I modified your code and it worked, you missed out the part that really hides and shows the element: $(document).ready(function(){ $('#toggleTwo').toggle(function(){ $('#toggleTwo').html('hide'); $('#rubricTwo').hide();

[jQuery] Re: document.location in 1.1.4

2007-08-27 Thread Theodore Ni
I have not looked at the code in depth, but I know that 1.1.4 supports recursive $.extend(), which might look at the fields inside your document.location object and return something the function was not expecting. On 8/27/07, drew <[EMAIL PROTECTED]> wrote: > > Hi all, > > I've been using $.ajax

[jQuery] Re: general JS Q: when to use the delete operator?

2007-08-27 Thread Theodore Ni
I only recently learned that delete was even a Javascript keyword when my editor highlighted it ;-) I'm sure there are cases when you can use it, although I can't think of anything where it is completely necessary. Maybe someone who knows more about the intricacies of Javascript can tell us wheth

[jQuery] Re: pnGFix Plugin with Jquery 1.1.4

2007-08-27 Thread Sam Sherlock
AFAIK there are two pngFix plugins for jquery. http://khurshid.com/jquery/iepnghack/ Is the one I am using, it works (as far as I have tested) with latest jQuery, you can't repeat the image using background repeat. On 27/08/2007, voltron <[EMAIL PROTECTED]> wrote: > > > Hi all, > > has anyone g

[jQuery] A Quick Thank You to the jQuery UI team

2007-08-27 Thread Rey Bango
Guys, I know you guys have been busting your tails on getting everything ready for jQuery UI and I wanted to tell you how thankful and appreciative I am for all of the hard work you've done to date. Getting a complete UI library developed is no easy task. I'm proud to be associated with such

[jQuery] Re: Toggling the html of an element

2007-08-27 Thread Dan Evans
How about instead of putting a .toggle() inside a .click() just use a .toggle()? Something like this: $(document).ready(function(){ $('#toggleTwo').toggle(function(){ $('#rubricTwo').html('hide'); return false; }, function(){ $('#ru

[jQuery] Re: Order of execution with onclick and click

2007-08-27 Thread Theodore Ni
I just did a quick test because I had to visit this very issue when I had some problems combining Live Query with Interface draggables. It seems that click() doesn't touch onclick (which makes some sense because it might get messy firing multiple click() functions and unbinding them). >From my te

[jQuery] Re: hover and hoverIntent

2007-08-27 Thread Dragan Krstic
Solution would be: window.status = $(this).attr("href"), I think. 2007/8/27, Dragan Krstic <[EMAIL PROTECTED]>: > > I noticed that, too. I would give a shot to window.status. It was handy > during href="javascript:;" time. > > 2007/8/27, Dan Evans <[EMAIL PROTECTED] >: > > > > > > I am wondering i

[jQuery] Re: hover and hoverIntent

2007-08-27 Thread Dragan Krstic
I noticed that, too. I would give a shot to window.status. It was handy during href="javascript:;" time. 2007/8/27, Dan Evans <[EMAIL PROTECTED]>: > > > I am wondering if anyone has noticed the issue with jQuery's hover > function that makes it less than perfect for dropdown menus. Normally > most

[jQuery] Re: Toggling the html of an element

2007-08-27 Thread voltron
Very strange, that does nor work either Klaus. I am using 1.1.3, maybe it´s a Jquery version problem? Toggle works when I remove both arguments and leave it empty. Thanks On Aug 27, 9:56 pm, Klaus Hartl <[EMAIL PROTECTED]> wrote: > Benjamin Sterling wrote: > > > >$(document).ready(function(

[jQuery] pnGFix Plugin with Jquery 1.1.4

2007-08-27 Thread voltron
Hi all, has anyone gotten the pngFix plugin to work with Jquery 1.1.4? Thanks

[jQuery] Re: Toggling the html of an element

2007-08-27 Thread voltron
Thanks for the reply Benjamin, sadly, the solution does not work, strangely, FireBug does not state any errors. Any other idea? Thanks again On Aug 27, 8:54 pm, "Benjamin Sterling" <[EMAIL PROTECTED]> wrote: > >$(document).ready(function(){ > >$('#toggleTwo').click(function(){ > va

[jQuery] Re: Toggling the html of an element

2007-08-27 Thread voltron
Strange, my posts are not showing up. Well here goes. I tried both methods, and both don' t work, could it be a biug with the Jquery version? I am using 1.1.3. Firebug does not state any errors and when I remove both values for the toggle function, it works. Any other ideas? Thanks On Aug 27, 10

[jQuery] Re: Tablesorter Questions

2007-08-27 Thread Peter Bell
@Josh, Worked perfectly - jQuery is great - even *I* can make sense of it! @Rey, The very same - thanks to your continued evangelism of jQuery I've finally caught the bug! Best Wishes, Peter On 8/27/07 2:36 PM, "Josh Nathanson" <[EMAIL PROTECTED]> wrote: > > Hi Peter, welcome to the jQuery

[jQuery] document.location in 1.1.4

2007-08-27 Thread drew
Hi all, I've been using $.ajax in jQuery 1.1.3 to make Ajax requests, and was using document.location to set the url to send the request to, like so: $.ajax({ url: document.location, data: data, dataType: 'json', type: 'post', success: function(response_data) { // do something...

[jQuery] Re: jQuery Interface Highlight Bug?

2007-08-27 Thread Brandon!
Ouch, a 6 month old bug? I guess I'll have to just leave my callback function in for now, unless someone knows a better work around? Thanks, Brandon On Aug 27, 2:15 pm, "Priest, James (NIH/NIEHS) [C]" <[EMAIL PROTECTED]> wrote: > > -Original Message- > > From: Brandon! [mailto:[EMAIL P

[jQuery] Re: Toggling the html of an element

2007-08-27 Thread Dan Evans
Is there a reason to put the .toggle() inside a .click()? Why not? $(document).ready(function(){ $('#toggleTwo').toggle(function(){ $('#rubricTwo').html('hide'); return false; }, function(){ $('#rubricTwo').html('show');

[jQuery] Re: Validation by Jörn Zaefferer - errorPla cement confusion

2007-08-27 Thread Feed
Yes, IE selects the TD instead of TR. Just like if I were using just ONE parent(). On Aug 27, 4:51 pm, Jörn Zaefferer <[EMAIL PROTECTED]> wrote: > Feed schrieb:> Ok, there seem to be a bug somewhere look: > > [...] > > Conclusion: IE doesn't seem to understand the second .parent() it > >

[jQuery] Re: Toggling the html of an element

2007-08-27 Thread Benjamin Sterling
Ahh good catch Klaus! On 8/27/07, Klaus Hartl <[EMAIL PROTECTED]> wrote: > > > Benjamin Sterling wrote: > > > >$(document).ready(function(){ > > > >$('#toggleTwo').click(function(){ > > var $this = $(this); // add a reference to "this" relating to the A tag > > $('#rubricTwo').to

[jQuery] Re: Release: Accordion 1.5

2007-08-27 Thread Jörn Zaefferer
Jörn Zaefferer schrieb: Brian Cherne schrieb: Jörn, how hard would it be to incorporate hoverIntent? It would be extremely easy if hoverIntent were implemented as a custom event. I guess adding support for that within hoverIntent is very easy, so thats the approach I'd prefer. I'll see wha

[jQuery] Re: Problem with validate plugin in IE6?

2007-08-27 Thread Jörn Zaefferer
SeViR schrieb: $("#envia_quest").validate({ errorClass: "error_valida", errorElement: "em", errorPlacement: function(error, element) { error.appendTo( element.parents("ul").find("li.aki_erro") ); }, <- THIS IS THE

[jQuery] Re: Release: Accordion 1.5

2007-08-27 Thread Jörn Zaefferer
Brian Cherne schrieb: Jörn, how hard would it be to incorporate hoverIntent? It would be extremely easy if hoverIntent were implemented as a custom event. I guess adding support for that within hoverIntent is very easy, so thats the approach I'd prefer. I'll see what can be done about that.

[jQuery] Re: Problem with validate plugin in IE6?

2007-08-27 Thread SeViR
Jean escribió: I dont know why but with validate code my js dont run anything =/ even though a simple alert I´m trying with IE6, FF works fine! Is somebody with the same problem?? $(document).ready( function() { $("#validando").hide(); $("#Responder").bind('click', function(){

[jQuery] Re: Validation by Jörn Zaefferer - errorPla cement confusion

2007-08-27 Thread Jörn Zaefferer
Jörn Zaefferer schrieb: Feed schrieb: Ok, there seem to be a bug somewhere look: [...] Conclusion: IE doesn't seem to understand the second .parent() it doesn't select the TR. What can I do to fix this? Did you check what IE select in that case? Sorry, forget that. I'm gonna check

[jQuery] Re: Toggling the html of an element

2007-08-27 Thread Klaus Hartl
Benjamin Sterling wrote: $(document).ready(function(){ $('#toggleTwo').click(function(){ var $this = $(this); // add a reference to "this" relating to the A tag $('#rubricTwo').toggle(function(){ $this.html = "hide";} ,function(){$this.html ="show";} );// end toggle

[jQuery] Re: Validation by Jörn Zaefferer - errorPla cement confusion

2007-08-27 Thread Jörn Zaefferer
Feed schrieb: Ok, there seem to be a bug somewhere look: [...] Conclusion: IE doesn't seem to understand the second .parent() it doesn't select the TR. What can I do to fix this? Did you check what IE select in that case? -- Jörn

[jQuery] Re: Validation by Jörn Zaefferer - errorPla cement confusion

2007-08-27 Thread Feed
Anyone, please? I'm almost sure that this is a bug in Validation plugin by Jörn Zaefferer, which does not accept parent().parent() inside errorPlacement... can someone help me to fix this bug? $(document).ready(function(){ $ ("#field1").parent().parent().next().find(">td:last").css("back

[jQuery] Re: Vertical Tabs example....

2007-08-27 Thread Giuliano Marcangelo
Dan, very quick and dirty experiment , using Klaus's test page (you can tweak the css to suit your particular needs)and only tested in FF and IE7 for each div id="container-n"add a class of "container"...and use the attached stylesheets ... changes (from original): .

[jQuery] Problem with validate plugin in IE6?

2007-08-27 Thread Jean
I dont know why but with validate code my js dont run anything =/ even though a simple alert I´m trying with IE6, FF works fine! Is somebody with the same problem?? $(document).ready( function() { $("#validando").hide(); $("#Responder").bind('click', function(){

[jQuery] Re: Order of execution with onclick and click

2007-08-27 Thread Stephan Beal
On Aug 27, 6:45 pm, Mike Miller <[EMAIL PROTECTED]> wrote: > I have an html element that has an onclick attribute set which calls a > couple of JS functions. Using jquery I am adding a click event to the > same element. Can anyone tell me what the expected execution of js > functions will be? T

[jQuery] Re: Order of execution with onclick and click

2007-08-27 Thread Erik Beeson
> $.("#el1").click(function () { There shouldn't be a . between $ and ( I'm not sure about mixing jQuery events and inline events. I think people generally try to avoid it (like, just call jsfunction1 from your click handler). --Erik

[jQuery] Re: jQuery Interface Highlight Bug?

2007-08-27 Thread Priest, James (NIH/NIEHS) [C]
> -Original Message- > From: Brandon! [mailto:[EMAIL PROTECTED] > > I am using the jQuery Interface plugin in a project and I am trying to > get the Highlight effect to work, but I am having a problem in > Internet Explorer (specifically IE6). When I use Highlight: > if (response == 'su

[jQuery] Re: general JS Q: when to use the delete operator?

2007-08-27 Thread Stephan Beal
On Aug 27, 8:39 pm, traunic <[EMAIL PROTECTED]> wrote: > read > throughhttp://simon.incutio.com/slides/2006/etech/javascript/js-tutorial.001... > today and feel like I did not know anything; That's a nice overview, and i also learned/clarified a few things by reading it. > than designing!). I

[jQuery] hover and hoverIntent break the browser slightly

2007-08-27 Thread Dan Evans
I have noticed something with the way that hover works in jQuery that breaks the default browser behavior. Normally the browser displays the href of a link in the status bar when a user hovers over it. Since hover and hoverIntent return false for all children of the hovered item onmouseover and on

[jQuery] Re: Toggling the html of an element

2007-08-27 Thread Benjamin Sterling
$(document).ready(function(){ $('#toggleTwo').click(function(){ var $this = $(this); // add a reference to "this" relating to the A tag $('#rubricTwo').toggle(function(){ $this.html = "hide";} ,function(){$this.html ="show";} );// end toggle return false;

[jQuery] Re: Adding a Remote Script that Adds an Image (Thawte)

2007-08-27 Thread Pyrolupus
Many thanks for the redefine doc.write() suggestion! It didn't work, but it was certainly a good idea. ^_^ I updated http://dreamwolf.us/demo/jqscript_button.php with the redefined document.write(), but it still does not solve the issue of the Thawte image replacing the page. I added a second b

[jQuery] jQuery Interface Highlight Bug?

2007-08-27 Thread Brandon!
I am using the jQuery Interface plugin in a project and I am trying to get the Highlight effect to work, but I am having a problem in Internet Explorer (specifically IE6). When I use Highlight: if (response == 'success') jQuery('#products').Highlight(2000, '#FFC'); In Firefox this works fine, bu

[jQuery] hover and hoverIntent

2007-08-27 Thread Dan Evans
I am wondering if anyone has noticed the issue with jQuery's hover function that makes it less than perfect for dropdown menus. Normally most browsers display the href of the link in the status bar at the bottom of the window when a user hovers that link. Because hover suppresses the default onmou

[jQuery] Toggling the html of an element

2007-08-27 Thread voltron
Hi all, I am toggling an element using A tags, I would like the A tag to display "Show" or "Hide" depending on the state. my proble is, I cannot get this to work properly: my code: $(document).ready(function(){ $('#toggleTwo').click(function(){ $('#rubricTwo').toggle(f

[jQuery] Re: click away from layer to disappear

2007-08-27 Thread gr00vy0ne
Out of curiosity, is IE compatible with the $(window).bind function? In testing my solution, IE6/IE7 doesn't seem to recognize the click at all. For a simple test, I simply did the following: $(window).bind('click', function(ev) { alert("clicked"); } In Firefox and Safari, I ge

[jQuery] Re: general JS Q: when to use the delete operator?

2007-08-27 Thread traunic
read through http://simon.incutio.com/slides/2006/etech/javascript/js-tutorial.001.html today and feel like I did not know anything; been working with javascript in web browsers for over 10 years, but learned it organically and come from an art school background (coding pays better than designing

[jQuery] Re: Tablesorter Questions

2007-08-27 Thread Rey Bango
Is this the same Peter Bell of ColdFusion fame? :D Rey Peter Bell wrote: I'm using tablesorter (http://tablesorter.com/docs/) with paging and have a couple of questions. 1. I'm using the fixedwidth and paging. The up/down arrows in the header are overlapping the header text in some cells when

[jQuery] Re: Tablesorter Questions

2007-08-27 Thread Josh Nathanson
Hi Peter, welcome to the jQuery list! Try just changing the "val" to "text" in the plugin - as long as you keep the class name the same it should work: var s = $(c.cssPageDisplay,c.container).text((c.page+1) + c.seperator + c.totalPages); Now, best case scenario you don't want to change the p

[jQuery] Tablesorter Questions

2007-08-27 Thread Peter Bell
I'm using tablesorter (http://tablesorter.com/docs/) with paging and have a couple of questions. 1. I'm using the fixedwidth and paging. The up/down arrows in the header are overlapping the header text in some cells when I look at this in FF2 on OSX although it looks OK on IE7 on a PC. ANyone els

[jQuery] Re: .min.js and .pack.js

2007-08-27 Thread motob
Ah, thank you very much. On Aug 27, 11:36 am, Stephan Beal <[EMAIL PROTECTED]> wrote: > On Aug 27, 2:51 pm, motob <[EMAIL PROTECTED]> wrote: > > > Besides file size, what is the difference between a .min and .pack > > version of a js file? I see this a lot with the various plugins and > > jquery

[jQuery] Re: jQuery 1.1.4: Faster, More Tests, Ready for 1.2

2007-08-27 Thread Shelane
Yep, I just did a force reload and it's showing properly. My bad. On Aug 27, 9:20 am, Rey Bango <[EMAIL PROTECTED]> wrote: > Shelane, > > I just verified and I see v1.1.4 listed there. Please refresh your cache. > > Rey > > Shelane wrote: > > The front page of the jquery site still shows 1.1.3.1

[jQuery] Re: Performance from 1.1.2 to 1.1.4

2007-08-27 Thread Jeffrey Kretz
As a note, any tests I have done in Visual Studio in ANY javascript (not just jQuery) are significantly slower in debug mode with VS attached than if just running it normally. This is due to the work the debugger is doing while the code executes. I would suggest testing your app on your intranet

[jQuery] Re: Using back button causes C.easing[e.easing || (C.easing.swing ? "swing" : "linear")] is not a function

2007-08-27 Thread Frank Peterson
I'm using 1.1.4 before I was using 1.1.3.1 and I got this error: jQuery.easing[e.easing] is not a function But upgrading to the newest jQuery didnt fix the error instead it just changed what the error was Even though I still get errors but the script works, I just need to prevent Firefox from o

[jQuery] Order of execution with onclick and click

2007-08-27 Thread Mike Miller
Hi, I have an html element that has an onclick attribute set which calls a couple of JS functions. Using jquery I am adding a click event to the same element. Can anyone tell me what the expected execution of js functions will be? ex: $.("#el1").click(function () { anotherFunctionHere; })

[jQuery] Re: jQuery 1.1.4: Faster, More Tests, Ready for 1.2

2007-08-27 Thread Olmo
I've ported the test to: http://ibolmo.no-ip.info/sandbox/ajax-leaks.html (note: it might be offline in a few days-- I'm moving :D). Can't seem to reproduce the leaks. Let us know if you experience any. Like I said, I had believed this had been taken cared of since the 5th ticket. I did find it

  1   2   >