- $(".richtext_doedit").click(function () {
- var editor = $(this).parents(".richtext_container").find("textarea");
- var preview = $(this).parents(".richtext_container").find(".richtext_preview");
-
- preview.hide();
- editor.show();
-
- $(this).parents(".richtext_container").find(".richtext_dopreview").prop("disabled", false).removeClass("active");
- $(this).prop("disabled", true).addClass("active");
- });
-
- /*
- * Install a click handler to switch to preview mode when the
- * preview button is pressed.
- */
- $(".richtext_dopreview").click(function () {