Greetings!
I have an html tag called <select> with bootstrap class form-control this class adds some styles which are these:
.form-control {
display: block;
width: 100%;
height: 34px;
padding: 6px 12px;...
I'm starting to learn Angular. make a small example and show me the list:
HTML and JS:
var app = angular.module(
'flapperNews',
[]
);
app.controller(
'MainCtrl',
[
'$scope',
function($scope) {
$scope.test...
function cargaPagina(pagina)
{
var desde = pagina * itemsPorPagina;
$.ajax({
data:{"param1":"dame","limit":itemsPorPagina,"offset":desde},
type:"GET",
dataType:"json",
url:"Conexion_Contacto.php"...
I try to minify my css code to improve the loading of my website.
I have tried for css clean and minify css, but the code that returns is always commented. Any help?
What I want is to be able to select the two options of the combo ( MES and ANO ) and that by means of the function onChange show me the data of the graph, I clarify that with a single data (MES) It shows me the results, but I...
Hello friends, well I tell you that I'm implementing the notifications function from the library of link and I have this code that I'll leave below and I'm supposed to take it out of the page to test it on my localhost but it does not work and...
In CSS there is a way to get the full height of the html document which is 100vw, and it is not getting all the height correctly.
The CSS looks like this:
#menu{
background-color: #252525 !important;
height: 100vw;
}
And the pag...
It connects me perfectly all the values but when entering a part that is called incidence appears to me write what you write me appears undefined
this is the code where data is entered into the DB
require_once ("../con...
as I do to download and to show on screen a previously loaded image to the database
This is the php that seeks to load the image I do with the variable but the only thing that loads is the name of the image
<?php...
In a form I have a textarea at the time of entering data the income of the following form.
But when I call it from the database it pulls me like a line
Is there any way to get it sorted out as you entered it at the beginning? I'm usi...