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

2007-11-13 Thread MikeR
Me four. On Nov 13, 1:30 pm, Andy Matthews [EMAIL PROTECTED] wrote: Me three. Good to know that it's not the jQuery list itself marking me as spam. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rey Bango Sent: Tuesday, November 13,

[jQuery] Re: SITE: http://www.bankofamerica.com/

2007-11-10 Thread MikeR
Confirmed here too... logged into my account, jQuery 1.2.1... nice! On Nov 9, 6:36 pm, Andy Matthews [EMAIL PROTECTED] wrote: HOLY CRAP! My wife was in our BoA account this evening and they had some nice AJA and JS based interaction going on. So I thought it would be interestting to see

[jQuery] Wondering if a jQuery plugin exists for something like what SquirrelCart has.

2007-10-11 Thread MikeR
http://www.squirrelcart.com/demo2/squirrelcart/ The very top of the page is their navigational menu... with the drop- downs.. almost like a real Menu Bar. Is anybody aware of any sort of jQuery plugin that does this? Thanks!

[jQuery] Re: Wondering if a jQuery plugin exists for something like what SquirrelCart has.

2007-10-11 Thread MikeR
Wow. Thanks very much for the lightning fast response! I had heard of superfish, never honestly never played with it (or many other jQuery plugins that I'd really like to) since work keeps me pretty busy. Will check out your plugin immediately! Again, thank you! On Oct 11, 8:25 pm, Joel Birch

[jQuery] Re: jquery 1.2 feedback

2007-09-12 Thread MikeR
Just to add real quick.. I also have not had ANY issues come up with 1.2 yet. Used the compatibility plugin all is working phenomenally. Couldn't be happier. Thanks jQuery team! On Sep 11, 5:26 pm, Alexandre Plennevaux [EMAIL PROTECTED] wrote: just wanted to report that i had absolutely not a

[jQuery] Re: Quick question...

2007-08-16 Thread MikeR
exactly but it might do something similar. -- HLS On Aug 15, 7:59 pm, MikeR [EMAIL PROTECTED] wrote: We all know love jQuery, but something that I've been wondering for a while now... not sure if it's feasible or not, but I'll ask anyway =). Is there any sort of HTML parser for PHP

[jQuery] Re: Quick question...

2007-08-16 Thread MikeR
at this? I'm not a PHP guy, but I marked this article some time back due to the mention of jQuery. http://ajaxian.com/archives/plaintemplate-phpquery AllexS -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of MikeR Sent: Wednesday, August 15

[jQuery] Quick question...

2007-08-15 Thread MikeR
We all know love jQuery, but something that I've been wondering for a while now... not sure if it's feasible or not, but I'll ask anyway =). Is there any sort of HTML parser for PHP that's similar to jQuery's selectors? ie: $('div.class').html().. but a PHP version? Thanks!

[jQuery] Re: Quick question...

2007-08-15 Thread MikeR
parser in any form for php, let alone one with the rich feature set of jQuery. Good luck on your hunt! On 8/15/07, MikeR [EMAIL PROTECTED] wrote: We all know love jQuery, but something that I've been wondering for a while now... not sure if it's feasible or not, but I'll ask anyway

[jQuery] Re: Quick question...

2007-08-15 Thread MikeR
PROTECTED] wrote: I believe there is a PECL extension called DOMParser or something like that, i find it during my hunt, but the server i was working on wouldnt allow me to install it.. Oh well.. Had to write myself a table parser.. fun. On 8/15/07, MikeR [EMAIL PROTECTED] wrote

[jQuery] Re: update input name

2007-06-04 Thread MikeR
$('#one').attr({ 'name': 'two', 'id': 'two' }); On Jun 4, 8:24 am, oscar esp [EMAIL PROTECTED] wrote: Sorry I did a mistake when I copied te code. I have the code like jQuery(#+inputID,addedItem).attr(id,newInputID); - works ok jQuery(#+newInputID,addedItem).attr(name,newInputID); - doens't

[jQuery] Re: How to pass variable from link

2007-05-29 Thread MikeR
http://docs.jquery.com/Ajax would be a good start =). You'll want to make an Ajax call ($.ajax, $.get, $.post... whichever) and use data to pass back data to PHP. qt wrote: Hello list Let's say I have a list of items (retrieved from a mysql-db with PHP). To edit the records, one has to

[jQuery] jQuery dimScreen

2007-05-28 Thread MikeR
http://docs.jquery.com/Plugins/dimScreen#Example I'm having difficulty getting this to work. It seems pretty straight- forward to me... I took the example and tried it via Firebug, but nothing happened. Any thoughts?

[jQuery] Re: jQuery dimScreen

2007-05-28 Thread MikeR
Not sure why I didn't think of that, Glen! Thanks much :). On May 28, 1:41 pm, Glen Lipka [EMAIL PROTECTED] wrote: You could just make div id=overlay style=width: 100%; height: 100%; position: absolute; top: 0px; left: 0px; z-index: 100; background-color: #00; display:none/DIV at the

[jQuery] Re: Comet

2007-05-25 Thread MikeR
http://docs.jquery.com/Plugins On May 24, 2:15 pm, peter [EMAIL PROTECTED] wrote: You are quite right. But this address is not advertised anywhere that I can find. You have to go snooping around, and look at the source code for the page. The problem is that there doesn't seem to be a

[jQuery] Re: NEWS: File upload application built using jQuery and Apollo

2007-05-25 Thread MikeR
I'd love to see more documentation on how exactly TO develop applications with Apollo using HTML JavaScript without Flash. That is quite an interesting article! I've only recently discovered Apollo, but my interest has been peaked since! On May 25, 8:03 am, Rey Bango [EMAIL PROTECTED] wrote:

[jQuery] Re: calling a function when you click off an element

2007-05-21 Thread MikeR
Here is a quick example I just threw together: http://www.infinitywebcreations.com/jquery.html Far from perfect, but it should give you an idea. On May 21, 5:13 pm, philo23 [EMAIL PROTECTED] wrote: for example, in Google docs, you can pop up a little menu (eg: actions menu), now when you

[jQuery] Re: calling a function when you click off an element

2007-05-21 Thread MikeR
Here is a quick example I just threw together: http://www.infinitywebcreations.com/jquery.html Far from perfect, but it should give you an idea. On May 21, 5:13 pm, philo23 [EMAIL PROTECTED] wrote: for example, in Google docs, you can pop up a little menu (eg: actions menu), now when you

[jQuery] Re: Binding a click event

2007-05-20 Thread MikeR
().is('#someid').click(function() { /* code */ }); On 5/20/07, MikeR [EMAIL PROTECTED] wrote: Just a quick question =). I want to bind an event handler to body so that whenever someone clicks anywhere on the body, a DIV disappears. However, there is a specific graphic (that has an id

[jQuery] Re: Binding a click event

2007-05-20 Thread MikeR
. $('body').bind('click', function() { if ( $(event.target).is('#someId') ) return; // short-circuit // continue on to hide div }); -- Brandon Aaron On 5/20/07, MikeR [EMAIL PROTECTED] wrote: Just a quick question =). I want to bind an event handler to body so that whenever

[jQuery] Re: Estimated 1.1.3 release date?

2007-05-15 Thread MikeR
I understand that the site issues, illnesses, etc caused delays... but does anybody have a new estimated date for the jQuery 1.1.3 release? Thanks! On Apr 28, 8:13 pm, Brandon Aaron [EMAIL PROTECTED] wrote: Here is a list of fixes thus far that will be in 1.1.3:http://tinyurl.com/2t2we5 --

[jQuery] Re: Estimated 1.1.3 release date?

2007-05-15 Thread MikeR
Ok great, John =). Thanks for the update. On May 15, 12:43 pm, John Resig [EMAIL PROTECTED] wrote: We're still dealing with site issues, hopefully this weekend, but again, that's what I said last week before the attack. --John On 5/15/07, MikeR [EMAIL PROTECTED] wrote: I understand

[jQuery] Re: Detecting key presses.

2007-04-30 Thread MikeR
); break; } }); }); On Apr 30, 3:31 pm, MikeR [EMAIL PROTECTED] wrote: I am wondering if using the keyup() jQuery event handler on (for example) and input field.. if there is a way to detect which key was pressed? IE: keycode 38, 40, etc.

[jQuery] Re: Estimated 1.1.3 release date?

2007-04-27 Thread MikeR
Oh ok. Thanks for checking in! Definitely looking forward to the next release. On Apr 26, 9:07 pm, Ariel Jakobovits [EMAIL PROTECTED] wrote: just wondering, why not call it jquery 2.0? what's with all this 1.0, 1.1, 1.1.3? - Original Message From: John Resig [EMAIL PROTECTED] To:

[jQuery] Re: Estimated 1.1.3 release date?

2007-04-26 Thread MikeR
Is there any estimated date range? On Apr 26, 2:57 pm, Brandon Aaron [EMAIL PROTECTED] wrote: 1.1.3 alpha should be coming soon. :) -- Brandon Aaron On 4/26/07, MikeR [EMAIL PROTECTED] wrote: Just wondering if anybody knows of an approx. release date for jQuery 1.1.3?