Gorkfu schrieb:
> I tried to set up an append text and remove text to a checkbox that is
> clicked. I tried the following it works for append perfectly but the remove
> manipulation freezes firefox and explorer. 
> 

Hm, give that a chance:

$(document).ready(function(){
          $("[EMAIL PROTECTED]'checkbox']").click(function(){
                  if ($(this).is(":checked")){
                          $(this).siblings("ul").hide("normal");
                    $(this).parent("li").append("Complete!"); // when this woks
                  } else {
                          $(this).siblings("ul").show("normal");
                    $(this).parent("li").append("");          // this also, 
what?
                  }
          });
  });


-- 
Viele Grüße, Olaf

-------------------------------
[EMAIL PROTECTED]
http://olaf-bosch.de
www.akitafreund.de
-------------------------------

_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/

Reply via email to