I want to do something similar to what the lacuerda.net page does, where you have a music and you can turn it up or down tonality.
I have my test page where I want to change the tone of the music.
I've been testing with the function r...
Suppose I have the following base64 image:
<img alt="imagen de prueba" width="16" height="16" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAA……… />
When I run the view in the browser and show the image, at the time of downloa...
I wanted to have the first nth-child, which is filled dynamically by aggregation and I do not know how to get it.
$("ul > li > a > span.menu-item-text:nth-child(1)").text("Primer Inicio");
ul {
padding: 0;
margin: 0;
}...
I am trying to put a ScrollTo but it is not being applied because it is hitting another JQuery that has a floating button that makes it > click directs to the top of the page, then I want to find the JQuery that had the template by defa...
How can I see the thumbnails of my images from google Drive ?
That is to say, that the api of google drive returns the url of the thumbnail.
I also use jquery , if necessary or to facilitate it.
<html>
<head>
<...
I have a common html table, with a column called "status", whose possible results are "yes" and "no". and I want to make all the rows whose state is="not" paint them in another color.
How can this be done with jQuery?
<table>
<tr&g...
I have a select with two values (allow and not allow), and under this select two input disabled to type the password, the idea is that if you select the value allow me to automatically enable the input to enter the password ...
I leave the sim...
Well I'm a bit confused about how to get the value of the fields in Javascript, I've seen that many times you get using the code:
document.getElementById("elemento").value;
and others using the code:
$(elemento).val()
What is the diff...
I have this piece of code:
$('#btn_1, #btn_2').on('click', function() {
// Button 1
let btn1conSpan = $('#btn_1 span');
// Button 2
let btn2conSpan = $('#btn_2 span');
console.log(btn1conSpan.text());
cons...