 $(document).ready(function() {
   $("#toggler").click(function() {
     $("#editor").toggleClass("invisible");
      event.preventDefault();

   });

 $("#preview").click(function() {
   $.post("/preview", { text: $("#text").val(), page_name: $("#page_name").attr("value")},
     function(data){
       $("#wiki").html(data);
     });
    $("#preview_alert").removeClass("invisible");
   });

  $("#loading").bind("ajaxSend", function(){
    $(this).text("loading...");
  });

  $("#loading").bind("ajaxComplete", function(){
    $(this).text("");
  });

 });