From 69118e51a9630a82e1f6807f4cc5173158f0e9d7 Mon Sep 17 00:00:00 2001 From: Guillermo Moguel Mandujano Date: Mon, 23 Jun 2014 18:50:51 -0500 Subject: [PATCH] Creado plugin con opcion de mensaje --- js/jquery.mutable.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/js/jquery.mutable.js b/js/jquery.mutable.js index 450cc5a..236f246 100644 --- a/js/jquery.mutable.js +++ b/js/jquery.mutable.js @@ -31,6 +31,14 @@ } }); + + $("form").on("focusout", ".mutarselect-input",function( event ){ + $(this).prev(".mutarselect").prepend(""); + $(this).prev(".mutarselect").show(); + $(this).remove(); + + }); + //return this; }; -- 2.0.0