Fiddle to test queries:
link
Let's say I have a table like that.
+-------------+-------------+------------------+-------------+
| Cod | Provincia | Cliente | tlfn |
+-------------+-------------+--------------...
I need a div to have a style when you pass the cursor over ( hover ), and another style when you do a click .
//HTML
<div>texto</div>
//HOVER JS
$('div').hover(function() {
$(this).css({'background-color':'blac...
I have a problem sending and opening an xml.
In the xml I need you to appear:
"Comisiones por Captaci>#243;n"
but when I send it or open it I get "Comisiones por Captaci>#243;n"
I tried coding
<?xml version=...
In a class, I have a method where I call my binary tree module (do not pay attention to the name of the treeAVL) and I save the information that I take from the database:
def ingresarArbol(self):
arbol=ArbolAVL.ArbolBinarioBusqueda...
Because the div with class iconmas occupies me in height 100% without saying it, I only indicate padding 0 0.5%
.padre
{
position:relative
}
.ttcategoriax
{
position: relative;
width: 100%;
}
.ttcategoriax p
{...
I recently implemented a javascript Liberia to my ionic project (winwheel.js)
I have the following function on my Home.ts
Exactly in this line of code 'callbackFinished' : this.alertPrize I call the function alertPrize()
E...
I have the following code in java I would need to search the result returned the name of a specific file, the problem is that this way I search by extension and not by the name and I can not think of how to perform a search by name .
I hope you...
I want to center the <div="container"> vertically with flexbox, I'm learning it but I can not focus, I'm using the justify-content: center to adjust it to the center (horizontally) and align-items:center (To adjust the...
When I was learning in C ++, I learned that with the iomanip library I could repeat characters like this:
cout << setw(40) << setfill('=') << endl;
Now that I'm in C # I do not know how to do it or if it's valid
$bd= new DB();
$conectar = $bd->conectar();
function extFolio($folio)
{
$query = "select FolioParticipanteCG from participantes where FolioParticipanteCG = '".$folio."'";
$folio=mysqli_query($conectar,$query)or die("Error al selecci...