How can I do the following:
I am sending the data from a tr to a modal in the following way:
<span id="Id<?php echo $res['id']; ?>" style="display: none;"><?php echo $res['id']; ?></span>
I pick them up in the mod...
I have a problem wanting to make the canvas full screen, the problem is that I want to do it without scale transformations css, I want to do it from css and js with defined sizes
function autoScale(id) {
var d = document, E, iw = window.innerW...
in this opportunity I have a small requirement that I have not been able to carry out.
I have a database girl structured in this way;
in AP a data will be loaded every day, which will always occupy the last positions obviously...
I have the following code:
<button onclick="javascript:descargarZip(this.value)" value="<%=sArchivoZip%>"><img src="./IMG/icons/mail-arrow-down-icon.png" /></button>
which calls a download function in js:
function...
The problem is that 2 scrollbars appear, one of the modal and another of the body, I want to remove the body when the modal is active.
This is my code:
<div id="myModal" class="modal">
</div>
.modal {
display: none;...
After finishing my web site, I have uploaded it to the server, and I have the following error with the .css and .js files:
I have looked for a solution and there is no way. I think it's due to a problem with the routes. If someone has e...
I have a simple crud that I did in react, the issue is that I did not use the create-react-app tool, but that I did it from scratch with webpack and babel, etc. My problem is how to create the production folder since with webpack it only does...
So far I have achieved this with the keyframes, is what I want, but now I only have the problem that it accelerates a lot or slows down in the end, the idea is to be constant so that it works as a web loader and a app, I do not know if it's some...
I currently have this format of txt
RODRIGUEZ=Apellido Paterno ,ESQUIVEL= Apellido Materno ,HECTOR
MIGUEL=Nombres ,C RAYON 41=Direccion
And I want to change it to JSON format so that it becomes more readable. I would appre...
the following php code that generates two arrays
<?php
//los datos salen de una tabla mysql
$last_year_sales = [2589, 2589, 1478, 2587, 7852, 9632];
$current_year_sales = [1250, 1480, 1156, 3589, 7521, 9632];
//enviar...