Posts by TiredMonkey • 15 points
4 posts
-
0
votes1
answer31
viewsQ: Problems with AJAX return
<script type="text/javascript"> $(document).ready(function(){ $('#btn_busca_f').click(function () { var data_ini = $('#data_ini').val(); var data_fim = $('#data_fim').val(); var cod_recurso =…
-
1
votes1
answer1520
viewsQ: Update page when closing a modal
How do I update a page whenever the modal is closed ? because I have a problem that whenever I close the modal and I will open again it does not open... so I need to update the page then it opens.…
-
0
votes1
answer79
viewsQ: run a script automatically
how can I run this script below, at the time the input label is filled? <script> $(document).ready(function(){ var serie = $('#serie_maquina').val(); var grupo = $('#grupo_maquina').val();…
-
0
votes0
answers35
viewsQ: take value of a Function and put in a variable
Personal how can I pass the attributes below in a variable? <script> $(document).on("click", "#btnInfoMaq", function () { var info = $(this).attr('data-id'); var str = info.split('|'); var…