hello guys I have a total of 10 buttons which have a value that I want to extract their value with a click depending on which is the clicked vote I'm doing with jquery but I do not know what I'm doing wrong here my code:
$("#evaluate...
Good morning.
Currently I fill a table dynamically and each record with its radio button
var donaciones = $('.donaciones');
$.each(donativos, function(index,value){
$('<tr>'...
I am showing data in a datatable but I need to show the records in descending order. I thought that ordering them from the query would work and it was not like that, can someone help me? The function in which I believe the datatable looks like t...
I have a div, in which I will create an indeterminate number of tables which will have a non-numeric id, once these tables have been created I would like to go through them one by one and get their id as I will use it for later processes.
Is...
I have a question, I have a function in JavaScript to generate tables, in the following way:
function AgregarTabla(idContenedor, idTabla) {
var htmlTabla;
htmlTabla=
"<table id = '" + idTabla +...
Reviewing my code, I realized that I have different syntax from document.getelementbyid:
document.getElementById("prcavance").value = value ;
document.getElementById('up_file').disabled = true;
I have it with double quotes and anot...
I am using an extension for the jQuery DataTables library that serves to select multiple rows of the datatable and make operations with them. The extension is
jQuery DataTables Checkboxes
link
But I have a problem. I need that aft...
I comment, the matter is as follows;
I'm working with HTML - jQuery and I'm using a script that replaces the dot by comma when I press it
Script
$('input.number').each(function () {
$(this).keypress(function(e){
if(e...
Create a button dynamically with javascript and now I want that when you click on it, a certain function will be executed that with jQuery would be as follows:
$(".elemento").on("load", function() {
// Codigo
});...
I have this example of drag and drop but only one element can be added to the input, then if I want to add another one, I will not add it anymore
How can I make it allow me to add more elements to the input?
$(document).ready(function(){...