I have not found a way to retrieve the values of a gridview row with jQuery or JavaScript to place it in input . I do not have a code, I only place the most similar one that is to retrieve values from a table.
This is how my table looks...
I have the following box I want to print:
Print function:
//Imprimir
$(document).on('click', '.imprimirDocumento', function() {
var divToPrint = document.getElementById('impresion');
var newWin = window.open('', 'P...
I have a question.
You can change the date I receive from the BD with my javascript and show it as: "February 14, 2018", since I currently receive "2018-02-14"
this is my JS
$.ajax({
url: 'datos.php',
type: 'post',
data: {f...
I have the following for where I try to fill a dynamic input text, the question is that I do not know how to assign the path value of for to be able to fill them correctly:
for (var j = 0; j < respuesta.length; j++) {...
I have a form that sends information to another web page to do an operation on a DB, but I am trying to validate the form first so that it does not send empty fields to the DB, the validation I already have but I could not do to validate first a...
I have a JQuery UI Slider that is not displayed within a modal.
What do I have to do to make the Slider show inside the modal?
This is my code (also available at Plunker ):
angular.module('ui.bootstrap.demo', ['ngAnimate', 'ui.boo...
good afternoon.
My question is the following as I can do to show the dates between 2 dates given by the user only with JavaScript or Jquery, since the information I am getting from an API I only take care of the Frontend and I do not have acc...
It turns out that I'm trying to pass a value of PHP to Javascript to validate me if there is already a certain amount of data.
The PHP script does its job if the data exists returns 1 and if it does not return 0...
I just started using the backbone.js framework using router to generate urls in my html.
I have 3 buttons defined so
<ul class="list-inline ">
<li><button id="boton1" type="button" class="btn btn-prima...
Basic question, but I'm a novice.
I want to have a counter for certain elements in each section, but I have not been able to do it, so far I have this:
var seccion = $('section');
var cantidadSecciones = seccion.lenght;
var doc = $(...