Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am looking at: CoolInput, but I need a destroy method.

I want to be able to do something like this:

$('#manualhint2').coolinput('foobar');

but I also need a method like:

$('#manualhint2').coolinput(destroy);  

or something like that, because there are times when I need to disable CoolInput.

Can somebody please help me?
Or, you can also recommend another jquery hint library that has a destroy method.

Thanks!

share|improve this question

2 Answers

up vote 2 down vote accepted

Have you tried

$('#manualhint2').coolinput(''); 

?

share|improve this answer
that makes sense! why didn't i think of it? >_< – geffchang Apr 21 '10 at 13:47
Glad it worked. Sometimes you just stare at something and completely miss the obvious. I believe they call it "not seeing the wood for the trees". I know this from personal experience. – bobsoap Apr 21 '10 at 22:52

With a bit explore in CoolInput code, I got this:

$(selector).each(function () {
  EmptyThisCoolInput($(this));
});

function EmptyThisCoolInput(o) {
  try {
    if (o.val() == o.attr(coolInputAttribute) && o.hasClass(coolinputBlurClass))
      o.val("").removeClass(coolinputBlurClass);
  } catch (e) { }
}

I separated EmptyThisCoolInput because I call this somewhere else. you can safely use this syntax:

$(selector).each(function () {
  try {
    if ($(this).val() == $(this).attr(coolInputAttribute) && $(this).hasClass(coolinputBlurClass))
      $(this).val("").removeClass(coolinputBlurClass);
  } catch (e) { }
});
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.