[jQuery] Re: Live Query doesnt find it, standard selection doesnt find it... whats wrong?

2007-09-09 Thread ethanpil
Turns out the code was fine. But, I was using JQuery.ready instead of $(document).ready for my main code. This resulted in the code setting the default visibility values every time the DOM was changed, insted of only the fist time. Simple and stupid mistakes always take the longest to debug. Ch

[jQuery] Live Query doesnt find it, standard selection doesnt find it... whats wrong?

2007-09-06 Thread ethanpil
Hi, I apologize for the long post. I have been working on this for hours and I dont know where to turn to... I am working on a task list of sorts. Ungrouped Tasks are listed individually at the top, followed by task groups: Here is relevant html:

[jQuery] Re: Are there click events from dynamically added DOM elements?

2007-08-30 Thread ethanpil
gt; (i.e. with $("#10192").click(function() {})), it should work. > > Alternatively, you could also use > thenewhttp://blog.brandonaaron.net/2007/08/19/new-plugin-live-query/Live Query > plugin! :-) It takes care of all this for you. > > Take care, and keep creating! > Sea

[jQuery] Trouble Deleting Table Rows

2007-08-22 Thread ethanpil
Hi, I know everyone here is busy, and this is probably a stupid newbiequestion, but I would aprreciate a point in the right direction... I am trying to delete a table row that I have created with JQuery: Everything works until I click the Close link inside the new table row, then nothing happens.

[jQuery] Are there click events from dynamically added DOM elements?

2007-08-22 Thread ethanpil
Hi, Sorry to bother everyone with what is probably a stupid question, but I am new to JQuery, although loving every second... I have been trying to dynamically add and delete a table row on a click event, using Jquery. I am able to add and delete the row, by clicking on the row above it but I hav