[jQuery] Re: remove DIV from form (maybe bug)

2009-05-13 Thread vmoravek
Hi, thanks a lot. It seem works! Vojtech On 13 kvÄ›, 14:55, "oly.ya...@googlemail.com" wrote: > try instead of >$(".lab_"+input_name+" #test").hide(); > this: >$(".lab_"+input_name+" ").children("#test").remove(); > or if you don't want to actually remove them: >$(".lab_"+input_name+

[jQuery] Re: remove DIV from form (maybe bug)

2009-05-13 Thread oly.ya...@googlemail.com
try instead of $(".lab_"+input_name+" #test").hide(); this: $(".lab_"+input_name+" ").children("#test").remove(); or if you don't want to actually remove them: $(".lab_"+input_name+" ").children("p").hide(); Hope this helps On 13 May, 14:02, vmoravek wrote: > Hi all, > I found same str