Questions tagged as 'jquery'

1
answer

Autocomplete field with jQuery, Ajax and PHP

Greetings, I have a DAO.php where I declare the functions that make the requests to the BD, this function in particular: function select_all_unis(){ $tecla_pulsada = $_POST['service']; $sql = "SELECT * FROM dumies WHERE studies...
asked by 17.01.2018 / 09:40
1
answer

Validate input decimals with comma

I would like to validate decimals with a comma, or how to add a comma to the allowed characters with this validation, I could validate integers but not decimals (with a comma) <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/...
asked by 17.01.2018 / 15:27
1
answer

JQUERY + Apache Cordova

I have a problem with querys and with apache cordova. In principle the server responds with an XML, I process it well and everything. But then it does about 42,000 querys. What reality has to do. But this same thing causes the tablet to get caug...
asked by 17.01.2018 / 10:47
2
answers

how can I navigate in an html table using jquery parent?

I have a problem that was recently presented to me. I need the value of a input found in a table in the second row when I press a button that is in the third row, using jquery and parent . I show you an example: <tabl...
asked by 31.01.2018 / 15:19
2
answers

modal does not respond to submit

I have the problem always at the beginning that I start creating a modal when sending the data, the previous occasion changed jquery and it worked, but now I copy and paste the code of a modal that works by calling it with jquery. I made the...
asked by 31.01.2018 / 18:43
3
answers

Not working Event onClick jQuery [closed]

I have the click event generated with jQuery, which is being defined within ready , for some reason within ready does not work, but outside, yes. Code: $(function(){ $('#id').on("click", function(){ ..algo.. } ); // No fu...
asked by 31.01.2018 / 18:26
1
answer

How can I handle an event for the Scrollbar and No for the Mouse

Here I have an error in the code, I can not get it to run; to help me, you can execute it directly from the executor of this question and see what errors are coming out of me. After it is executed correctly, I would need to manipulate the Scroll...
asked by 15.01.2018 / 19:33
0
answers

How to add an ID to the jquery DataTable (). rows (). ids ()?

I have a Table $("#tablaOficinista").DataTable(); I can add: <tr> <td>nombre_persona</td> <td>apellido_persona</td> <td>cedula_persona</td> <td>telefono_persona</td> &...
asked by 23.01.2018 / 16:42
1
answer

Attribute old () in Jquery

In my template blade I have: {{ Form::select('idnumero', $numero, old('idnumero'), ['id'=>'numero']) }} I want to use the old('idnumero') in jquery, is there any way?     
asked by 16.01.2018 / 02:18
1
answer

get input value for minDate

With the function below, it goes through dates from and to, through a calendar. I need to click on the 'until' input to get the 'from' input date to inform the minDate. How I'm doing it: minDate: $ ("# from" + x) .val (). .. it does not work...
asked by 17.01.2018 / 00:22