The case is the following. I have a script I wanted to use and as with all the questions "I suppose" I do not know how to do it. I am trying to do a search of array data with javascript "because they do not suggest other languages if your answer...
I have an HTML form that receives the number according to the ID registered in SQL and saved in another variable, however the ID is sequential and without zero, for example:
ID 1
ID 2
ID 3
I needed to get this ID and put it in the Number...
How to move a table with N rows and find the values specific to each DropDownList ?
Example of the table below:
Itriedthecodebelow,butwithoutsuccess.functionValidarStatusGrid(){vartemp,td;vartable=$("tbPedidos");
var status = $("#...
I want that when I type my zip and click the search button, it returns the data of the public place, state, neighborhood and uf but clicking on the search button it is not calling the function that searches the data of a webService of the mail....
I have the following code in jquery:
$.each(data.Dados, function (i, val) {
tr += '<tr>';
tr += '<td><div class="product" style="margin-bottom:0;padding-bottom:0;"><div class="product-info" style="margin-bottom:0;pad...
I have an application in VueJS and I need to concatenate simple quotes in a variable that has a date like this 2017-11-09T02:00:00.000Z .
I tried the following and I did not succeed:
var novaData = "'" + data + "'"
I tried...
Is it possible to prevent a modal from appearing if certain conditions are met? Example of what I want, more or less:
<button id="abreModal" class="btn btn-info btn-lg" data-toggle="modal" data-target="#modal">Open Modal</button>...
I'm using a regex to remove some characters, but as one of them is the brackets [] and I'm having problems with the regex replace(/[.!'@,><|://\;&*()_+=]/g, ""); . How would it be to remove this character in this function?