[jQuery] img tag wrap in p tags

2009-05-07 Thread dduck1934
All, im trying to get the syntax down to find all img tags that are NOT surrounded by tags and wrap those img tags in tags. I can get the selector to get all img tags and wrap it in a tag but i need to further take it to disregard the img tags that already are wrapped in pseudocode $(img p

[jQuery] Re: tablesorter after a tr.remove()

2009-01-16 Thread dduck1934
: > Excellent > > btw to note:  i've noticed that the tablesorter is MUCH faster with > the new 1.3 version of jQuery, i'd highly suggest using it if > possible  the new selector engine really makes this plugin fast > (er) > > On Jan 15, 4:55 pm,dduck1934 wrote: &

[jQuery] Re: tablesorter after a tr.remove()

2009-01-15 Thread dduck1934
e > > This example should be of helphttp://tablesorter.com/docs/example-ajax.html > > except that instead of "append"-ing data/rows, you run that code after > removing > > On Jan 15, 3:44 pm, dduck1934 wrote: > > > I have a table that im adding rows to dynamically

[jQuery] tablesorter after a tr.remove()

2009-01-15 Thread dduck1934
I have a table that im adding rows to dynamically with jquery of course, and every row has a click on it. when you click on it, it removes that row from the table. im using the remove() on that tr. Now when i apply the tablesorter plugin to that table, i delete a row like normal, then click the

[jQuery] Re: jdmenu top level links disabled with submenus

2008-09-18 Thread dduck1934
inks:false}); }); but this isnt working for me. The top level links are still not clickable On Sep 17, 5:54 pm, dduck1934 <[EMAIL PROTECTED]> wrote: > Hey all, > > Im using the jdmenu and when i add some sub menus, the top level menu > item link is disabled.  If i try

[jQuery] jdmenu top level links disabled with submenus

2008-09-17 Thread dduck1934
Hey all, Im using the jdmenu and when i add some sub menus, the top level menu item link is disabled. If i try to click it it does nothing, and I need to have that top level menu item still available to be clicked on. If anyone has any suggestions, please let me know. Cheers, Matthew

[jQuery] Re: jdMenu hides entire menu when top level link clicked

2008-09-17 Thread dduck1934
Ive had this problem too. If you havent found a solution there is a post on this here in this group http://groups.google.com/group/jquery-en/browse_thread/thread/59aaa2112bf93fc5

[jQuery] Re: tablesorter add date parser

2008-09-05 Thread dduck1934
code and stick it up in my header, for some reason the parser doesnt function at all. Maybe im getting some js problems i am not catching or seeing.. will see... On Sep 4, 2:35 pm, dduck1934 <[EMAIL PROTECTED]> wrote: > Thank you! > > That seemed to do the trick. I apprec

[jQuery] Re: tablesorter add date parser

2008-09-04 Thread dduck1934
Thank you! That seemed to do the trick. I appreciate it greatly. Matthew On Sep 4, 1:59 pm, MorningZ <[EMAIL PROTECTED]> wrote: > btw, the "AlphaNum" has zero to do with this post, that was from a > previous post i helped out on. i should have removed that to make > this post more clear

[jQuery] tablesorter add date parser

2008-09-04 Thread dduck1934
I was trying to add to the date parser in tablesorter to be able to handle dates formated like DD-MMM-YY (04-SEP-08), but i havent been successful. In the shortDate parser i tried adding the following.. ... var months = {Jan:1,Feb:2,Mar:3,Apr:4,May:5,Jun:6,Jul:7,Aug:8,Sep: 9,Oct:10,Nov:11,Dec

[jQuery] bind() with arguments

2008-08-28 Thread dduck1934
I had a quick question with the bind() method in jquery how do i use the bind to bind a function with arguments on an click $('#foo).bind('click',clickMe); function clickMe(x) { alert(x); } i thought i could do this.. $('#foo).bind('click',{x:'clicked'},clickMe); but that doesnt work.

[jQuery] Table Filter help

2008-08-25 Thread dduck1934
I have already received some feedback on this, but Im still stuck. I am basically looking to add a table filter to a table by using a dropdown or a series of dropdowns that will filter the data. The first link i was checking out is here. http://book.learningjquery.com/bookstore/news/ i was usi

[jQuery] tablesorter addition

2008-08-21 Thread dduck1934
Ive been playing with the tablesorter and Ive been attempting to modify some of the tablesorter code in order to be able to use groupings in the table, but i keep screwing it up more. for example COL1COL2 COL3 group1 A B C C A B group2 D