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 want to show or hide preview content on a click. So I use toggle effect with jQuery. But I can not hide the preview, if it was activated by a first click.

Here is my jQuery code...

$("#show").click(function () {
    $('#editor').toggle();
    $('#preview').hide();
    $("#rte").keypress(update);

    function update() {
        $('#preview').slideDown('slow');
        var rte = $('#rte').val();
        $('#preview_content').html(rte);
    }
});

You can see my complete code in action to Jsfiddle.

Thanks very much for your help.

Regards,

Vincent

share|improve this question
I don't understand the question. Could you clarify? – Yngve B. Nilsen Apr 1 '11 at 10:21

1 Answer

up vote 0 down vote accepted

It's because you bind the keypress event every time you click on Show. Try something like this:

var doUpdate = false;

function update()
{
    if (doUpdate) {
      $('#preview').slideDown('slow');   
      var rte = $('#rte').val();
      $('#preview_content').html(rte);
    }
}

$("#rte").keypress(update);

$("#show").click(function()
{
  $('#editor').toggle();
  $('#preview').hide();
  doUpdate = !doUpdate;
})
share|improve this answer
@dioslaka. Thanks, it works! @Yngve B. Nilsen. Sorry, my English is very poor and my ask was not simple to describe. @mVChr Thanks to edit. I don'forget your great function for (var p in smileDict). :) I have updated my Fiddle example with dioslaska's suggest. Cheers. – Vincent Apr 1 '11 at 11:32

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.