Posts by BR - Faria Netto • 19 points
3 posts
-
0
votes5
answers64617
viewsA: Monetary mask with jquery.inputmask
// prepara o input com a mascara jQuery(function ($) { $("#money").inputmask( 'currency',{"autoUnmask": true, radixPoint:",", groupSeparator: ".", allowMinus: false, prefix: 'R$ ', digits: 0,…
-
0
votes2
answers526
viewsA: How to customize messages from Select2?
It is very simple to customize just put the instructions below in the call of your Javascript so: formatNoMatches: function () { return "Pesquisa não encontrada"; }, formatInputTooShort: function…
-
1
votes2
answers526
viewsQ: How to customize messages from Select2?
I want to remove messages from Select2: Searching; No Matches found; Follow the code below: Pagina Html <input id="ajaxSecretaria" type="hidden" style="width:300px" /> Script: $(function () {…