[jQuery] tbody and jQuery

2008-04-15 Thread Alex Ezell
Is it possible that jQuery would insert tbody tags into the DOM for tables that do not have them? I am beginning to suspect that jQuery is the reason these tbody tags are appearing in the rendered source of my pages, despite the tables not having tbody tags in my code. /alex

[jQuery] Re: songza.com

2008-01-02 Thread Alex Ezell
Doesn't seem to work in Safari. The request made to Youtube are shown as forbidden. Firefox works great. Pretty cool stuff. On Jan 2, 2008 1:59 PM, Ty [EMAIL PROTECTED] wrote: songza.com so-o-o it's downloading the audio from youtube using the flash player, pretty slick. Why's everyone so

[jQuery] Re: Site Submission, finally!! :-)

2007-10-09 Thread Alex Ezell
Congratulations Steve! It's always nice to finish a project and realize how much you've learned along the way. I only glanced at the site, but your description sounds like you really jumpstarted your client's interaction with the web. Regardless of any technical stuff we might discuss, the most

[jQuery] Re: Code Review: Table filtering...

2007-09-14 Thread Alex Ezell
How big do you expect this table to get? I'm not sure, but on a really large table, it might be pretty slow to do a .each() over all the elements on each keypress. Maybe a better way would be to have a function to parse the table results and build some sort of data structure (array, JSON

[jQuery] Re: Looking for a calendar picker that allows for two instances on one page

2007-08-30 Thread Alex Ezell
Andy,I've used datePicker[1] from Kelvin Luck to do multiple date fields on the same page. I am still using v1 (because I am too lazy to update it and test the new v2), but I'm sure v2 would work fine for you. There are some cool things being done with time and date pickers that work nicely if

[jQuery] Re: Looking for a calendar picker that allows for two instances on one page

2007-08-30 Thread Alex Ezell
In particular, see this demo of the v2 of the plugin. http://kelvinluck.com/assets/jquery/datePicker/v2/demo/datePickerStartEnd.html

[jQuery] Re: OT: building a CSS-only nav system

2007-08-23 Thread Alex Ezell
Note to self: When demoing code, never use a photo more attractive than said code. Cool effect and cool photography. /alex On 8/23/07, Andy Matthews [EMAIL PROTECTED] wrote: Phew...that girl is beautiful. I've got something like that on my photo slideshow. That sort of nav has been around

[jQuery] Re: next anchor tag in list

2007-08-14 Thread Alex Ezell
Looks like Nabble is eating the HTML when you post from there. /alex On 8/14/07, b0bd0gz [EMAIL PROTECTED] wrote: Sorry about that list it should look like this ul class=thumbs li full_img/dh0215co4.jpg first link /li li

[jQuery] Re: [Slight OT] Quick straw pole about maps

2007-08-08 Thread Alex Ezell
As someone who has spent months, only moderately successfully, integrating Google Maps into a web app, I have two things to say: 1) Why is this the first I have heard of this plugin? I use jQuery throughout the site and would love to use it to handle some of my map duties. 2) I agree with Glen

[jQuery] Re: How to read value of a file input field?

2007-08-03 Thread Alex Ezell
This is not possible because the image will not yet be on your server. The browser will have no access to display an image local to the user's machine within a web page. You could maybe start uploading it as soon as they select it, then use Ajax to update the div once the upload is done. Maybe

[jQuery] Re: Good Javascript editor or IDE?

2007-08-01 Thread Alex Ezell
+1 for Aptana, quickly becoming a great IDE. I'm on Mac, so I do most of text-editing in TextMate, but occasionally I need something more IDE-oriented and pop over to Aptana. /alex On 8/1/07, Priest, James (NIH/NIEHS) [C] [EMAIL PROTECTED] wrote: -Original Message- From: Matt

[jQuery] Re: [ANNOUNCE] New jQuery using Site: jingproject.com

2007-07-31 Thread Alex Ezell
I use this quite a bit at work. I never realized it had jQuery. Didn't think to look. Thanks for sharing! On 7/31/07, Rey Bango [EMAIL PROTECTED] wrote: Added the site! Thanks for the submission. :) [EMAIL PROTECTED] wrote: Just had this site http://www.jingproject.com/ emailed to me, and

[jQuery] Re: Selected Option Value

2007-06-06 Thread Alex Ezell
I sent you that telepathy...didn't you hear me? Yeah, this is a good one to know. Thanks for reminding me. /alex On 6/6/07, Glen Lipka [EMAIL PROTECTED] wrote: AHA! I wish I knew this 4 hours ago! function whatisit() { alert($(select option:selected).val()); } body select

[jQuery] Re: Delete a table row with JQuery

2007-06-04 Thread Alex Ezell
Pablo, I'm sort of guessing here, but it might be that fadeOut doesn't remove the element from the DOM. Perhaps try another effect like DropOutUp like: jqRow.DropOutUp(500); /alex On 6/4/07, infosoft [EMAIL PROTECTED] wrote: Hi I have a table where I browse the records of the database. I

[jQuery] Re: Watermark Input Plugin Beta 1

2007-06-03 Thread Alex Ezell
Josh, The code at remysharp.com that you link to is definitely the one I posted above. Good job digging it up. Thanks! /alex On 6/3/07, Scott Sauyet [EMAIL PROTECTED] wrote: mrcarxpert wrote: It's been a long time since I've posted anything. I've been busy, but I did manage to squeeze

[jQuery] Re: Watermark Input Plugin Beta 1

2007-06-01 Thread Alex Ezell
I use a plugin called hint.js to do this. Not sure where I got it and the original source is on another machine so I can't look it up. It works by catching all the inputs with a particular CSS class and setting their values to the HTML title attribute's value. It's a similar idea but slightly

[jQuery] Re: * Important: Repent, Completely trust in God only and, Love Him with all of your heart.

2007-05-15 Thread Alex Ezell
On 5/15/07, Gordon [EMAIL PROTECTED] wrote: I just love fundies. But I couldn't eat a whole one. Sure you could. You'll find they're mostly full of hot air. /alex

[jQuery] Re: Featured Content or Cnet Carousel

2007-05-07 Thread Alex Ezell
This is not an answer, just an observation. Does it seem odd that a carouselor slideshow which is decidedly horizontal uses a DropOutDown effect? Shouldn't it just fade or at least slide off to the side? /alex On 5/7/07, Dan G. Switzer, II [EMAIL PROTECTED] wrote: Is anyone familiar with

[jQuery] Re: Loading PHP via AJAX

2007-04-16 Thread Alex Ezell
Take a look through there, but basically the ajax calls are browser calls so as long as you stay within the same domain anything the page would have access to the php called through ajax has access to. On 4/15/07, Alex Ezell [EMAIL PROTECTED] wrote: Is it possible to load a PHP page via AJAX

[jQuery] Loading PHP via AJAX

2007-04-15 Thread Alex Ezell
Is it possible to load a PHP page via AJAX such that the PHP page being loaded has access to the session, objects and variables which exist in the calling page? My situation is that I would like to load one of several different forms (written in PHP) based on which link a user clicks.

[jQuery] Re: Bizarre IE Troubles

2007-04-06 Thread Alex Ezell
I got rid of the password hoping someone might be able to help. I'm thinking maybe it's some conflict between Google Maps and jQuery, but because of the IE weirdness, I can't even see the page to see if there is an error. Thanks! /alex On Apr 4, 2:11 pm, Alex Ezell [EMAIL PROTECTED] wrote

[jQuery] Bizarre IE Troubles

2007-04-04 Thread Alex Ezell
I'm not 100% sure that jQuery is causing this issue, but I can't even figure out what the error is, so I ask you kind people for help. This has been a thorn in my side for a week now. Whenever anyone executes a search on this page, IE gives an error about Webpage has expired. It works fine in

[jQuery] Re: UPDATE: code review, suggestions for condensing / reuse?

2007-04-03 Thread Alex Ezell
Andy, Nice work and some great suggestions from Brandon. I love this list! /alex On 4/3/07, Andy Matthews [EMAIL PROTECTED] wrote: Awesome Brandon!! Those are PRECISELY the sorts of things I'm looking to learn. andy -Original Message- From: jquery-en@googlegroups.com