I need to download a * .exe file via link in the tag href, I did this:
<a href="remoto.exe"><input type="button" id="botao" title="Suporte HSS" value="Suporte HSS"></a><br><br><br>
But always download...
Well, I've implemented google reCAPTCHA in the forms of my website, working normal, but it is possible to send the forms without selecting the captcha, how do I make it a required field before submitting as a "required"?
This is my code is a simple form:
<!DOCTYPE html>
<html>
<head>
<title>Formulário</title>
<meta charset="utf-8" />
</head>
<body>
<form name="meu_form">
<h1>For...
I have the following div with information
<div class="endereco-item">
<h2 class="azulclaro identify">Casa</h2>
<div class="entrelinha_0"></div>
<div class="font_15"></div>
<div class="fo...
Hello, I have 3 input that receives hours and minutes of a timepicker :
<input type="text" id="seg1" onBlur="calcular">
<input type="text" id="seg2" onBlur="calcular">
<input type="text" id="seg">
The first on...
Hello, everyone.
I'm trying to popular a list-group bootstrap with ajax but I'm not getting it. I have already researched several places about it and could not resolve it.
The php code is ok and the json that returns from php is also ok....
I did a little JavaScript function to do a dynamic search in the database without giving refresh and it is working, but I think there is a problem with onkeyup . When entering text in the input field and then deleting this text,...
I'm not able to get my app to stay in full screen and just leave the navigation button.
getWindow().getDecorView().setSystemUiVisibility(
View.SYSTEM_UI_FLAG_LAYOUT_STABLE
| View.SYSTEM_UI_FLAG_LAYOUT_H...
I have a paragraph with no id that I need to stylize. Stylization can only occur for this paragraph. Example:
<p>Conteúdo</p>
So I want to apply CSS only to it.
seletor {estilo;}
Note: I can not add an id in the "p".