Questions tagged as 'jquery'

2
answers

how to get mysql data with jquery in php mvc [closed]

I am a newbie in programming and I am learning php mvc without any framework, my questions are, should I ask the model or the controller ?, and what script should I load with jquery to get that data without reloading the page?     
asked by 14.09.2017 / 21:44
1
answer

How can I implement Jquery in a project in Meteor?

I am working with React components, an example would be this NavBar template import React from 'react'; import {Link} from 'react-router' import { Accounts } from 'meteor/accounts-base'; export default class NavbarLanding extends React.Compon...
asked by 05.10.2017 / 16:23
1
answer

How can I get the percentage value and also perform the calculation?

//Creo una función donde voy a sumar todos los valores totales de la última columna var sumaTotalesDetalleGastoGeneral = function(){ //Inicializo en 0 el valor a establecer indicando el resultado de la sumatoria var totales = 0; //Recorro todas...
asked by 06.10.2017 / 14:33
1
answer

How to get the total sum of all the subtotals?

//Creo una función donde voy a sumar todos los valores totales de la última columna var sumaTotales = function(){ //Inicializo en 0 el valor a establecer indicando el resultado de la sumatoria var totales = 0; //Recorro todas las filas de l...
asked by 06.10.2017 / 03:17
2
answers

Checkbox generated by default in append sends wrong value

Hi I explain, I have a script that generates inputs dynamically, it worked perfectly, the detection of checkboxes with this code: $(document).on("change", "input[type='checkbox']", function() { var checkbox_val = ( this.checked ) ? 'Si' :...
asked by 02.11.2017 / 17:43
1
answer

Error Can not reinitialise DataTable

I have a table where I load it with DataTables and I want to customize the language, but I get an error in the way I'm doing it. Error:    DataTables warning: table id = table - Can not reinitialize DataTable. Here's the code: <sc...
asked by 14.11.2016 / 04:45
1
answer

validate asp.net text field?

I have an asp text field: textbox in which I must enter 1 to 2 whole numbers from a keyboard created with button type="button", I have not used asp: button because this keyboard and this textbox are inside a modal of bootstrap, and if I used an...
asked by 06.04.2018 / 18:48
1
answer

know percentage in javascript

I am making a progress bar that according to a countdown, automatically logs the session according to the time spent. This is the example of how it works more or less. It would be a warning that the session will be closed, but otherwise it is...
asked by 13.04.2018 / 14:54
3
answers

fill in input text based on a list selection

I need that if I select item 1, the text "Element 1" is added to the input # search, I hope for your wisdom, thank you very much in advance:) var esteLi = $(".datss").html(); $("#busqueda").val(esteLi); <input id="bu...
asked by 19.02.2018 / 18:30
1
answer

Select radio input in div

I would need to know please how I select an input that is inside a div. At the same time I would like to hide the circle of the radio ... I tried this: $(".calendar div").click(function(e){ $(this).closest(".calendar").find("div").removeC...
asked by 21.02.2018 / 12:02