Posts by GiaN • 43 points
6 posts
-
0
votes1
answer171
viewsQ: Exchanging values between functions with Javascript
Hello, in my code how do I call the function (#print) the values contained in the "data" array are obtained from the generating functionString. var gerarString = function () { var codproduto = 001,…
javascriptasked GiaN 43 -
0
votes2
answers281
viewsA: Event . on('click', does not work on input containing data-Md-icheck
Documentation http://icheck.fronteed.com/#callbacks I used the command: $(''input). on('ifChecked', Function(Event){ Alert(Event.type + ' callback'); });…
-
1
votes2
answers281
viewsQ: Event . on('click', does not work on input containing data-Md-icheck
Hello, in my role has the event .onClick that should activate when marking the checkbox, but when I use the data-md-icheck it is ignored by the function. <input type="checkbox" data-md-icheck…
-
1
votes0
answers1066
viewsQ: Copy data from one table to another JS / HTML
I have 2 tables (tab1 and tab2) tab1 has 'inputs' to register information. tab2 returns products already registered in the database. I would like to create a function that when selecting the…
-
2
votes3
answers611
viewsQ: Calculating in Table Fields with JS
I have a table with two fields: "Product Value" and "Sale Price". Another field to define a calculation for the "Sale Price". The function only works for the first row of the table. I would like to…
-
0
votes1
answer67
viewsQ: Use div class in js validation
I have a login validation in js that generates an alert: <script type="text/javascript"> var mensagem = "<?php echo (isset( $_SESSION['erroLogin'])? $_SESSION['erroLogin'] :…