I would like to know if it is possible to use variables in jQuery and, if so, in what way. I explain what I'm trying to do.
I have the following HTML code right now:
<html>
<head>
<title>Prueba</title>
<sc...
Good morning.
I have this Jquery code:
$(document).ready(function() {
$('#bt_add').click(function() {
var check = [];
$("#tabla").find('.selected').find('td').each(function(){
if($.trim($(this...
Hi, I would like to know if there is any way that by entering characters in a input of type text a bar with previously entered suggestions is displayed, using JQuery , javascript , etc.
I clarify that I do not want to o...
How to generate gradient as the image that I attached in a sound wave
var elem = $('div');
var count = elem.length;
var loop = function(){
setTimeout(function(){
elem.each(function(){
var $this = $(this);...
Hi, could you help me parse this JSON since I do not succeed?
{
"pages": [
{
"name": "página1",
"elements": [
{
"type": "text",
"name": "pregunta1"
}
]
}
]
}
var obj = JSON.par...
I have this function in javascript where I am directed to a PHP file which returns a file json and I show it in a table in the following way.
JavaScript Code:
$.each(students, function(calificaciones, std) {
$('#tableStudents').app...
I do not achieve that when selecting an option that is not the first, the parameter is sent correctly to the function Export() . The alert I throw it correctly with the option that I select. But when sending the parameter, always se...
I have the following code:
$('#txtFederalCantidad').mask('00000000', { reverse: true });
valorFederal = $('#txtFederalCantidad').val();
$('#txtMonto').mask('00000000', { reverse: true });...
I'm trying to create a table using a JSON file.
What I'm looking for is to create the table based on the structure of the JSON, for example, I have the following JSON:
{
"Persona":{
"nombre":"Juan",
"edad":28,
"Residenc...
I have a problem with jQuery .
I'm going through a table of bootstrap with certain values, I need the values to be saved in an array, at this moment I'm going through the values separately, I do not know how I can go through all the values a...