Questions tagged as 'javascript'

3
answers

Get value from all checked checkboxes

How do I get all checked-in checkbox values and switch to GET. $("#subcategoria").click(function(){ var checados = []; $.each($("input[name='subcategoria[]']:checked"), function(){ $.get("inc_...
asked by 03.08.2017 / 00:36
2
answers

E-mail user registration authentication in Node.js [closed]

I'm developing a user registration screen, and the need arose to authenticate the user's registration by email, the procedure would be something like, when confirming the registration an email is triggered for the user, and the same to complete...
asked by 31.07.2017 / 22:48
1
answer

Jquery Chosen not returning value

How to get chosen to display search value. It is not showing the options inside the select. HTML <select id="habilidades" name="habilidades[]" multiple class="input col-lg-10 chosen-select margem20" required> </select>...
asked by 01.08.2017 / 16:01
3
answers

access a json object as if it were an array

I need to access a json object as if it were an array, Example I have the following object on the client side: ´ remessa : function (){ var arr2 = [{ 'NrSequenciaDoc' : '7777', 'TipoOcorrencia' : '1', 'NossoNumero'...
asked by 02.08.2017 / 20:57
2
answers

Execute document and send variable value in PHP by Ajax

Hello, I have to develop a confirm button for deleting a product. For this, I had the idea to execute a file in php through ajax from the moment I click on "Confirm" in the JS confirm together, passing the value of a variable that will serve to...
asked by 02.08.2017 / 21:24
1
answer

Reuse function in javascript

I have the following question, I want to manipulate a specific value in my function, where the assigned value is not fixed but dynamic (where I can change it as needed). function mostrardiv() { document.getElementById("teste").style.d...
asked by 23.08.2017 / 22:07
2
answers

Total Input radio PHP

I have this site and need to implement a sum with input[type=radio] . This page is where I make the sums This is the JavaScript code that makes the sums. <script> function formatCurrency(num) { // função original -...
asked by 02.08.2017 / 17:35
1
answer

TEF communication

I need to integrate the TEF into my system. Does anyone have any idea how I can start this? Is there any open source software to do this integration? I found some information on the internet that talked about PayGo , would this be a viable opti...
asked by 22.08.2017 / 02:44
1
answer

I can not succeed in making a request via ajax

I get in my JS the month that the user chose in the HTML select, if in case the month value was set it executes the Filtration_Database function according to the value, otherwise I define that the value will be "m" but it does not makes the requ...
asked by 24.08.2017 / 19:24
2
answers

Error fetching the specific value of a dynamically created input inside a html table

I have an html that looks like the html below and I need to get the value of an input that is inside a sub table that is contained within another > table from the click of the Insert button , I saw some posts and could not get it to work...
asked by 30.10.2017 / 12:54