Questions tagged as 'html'

1
answer

Hide divs when the mouse is out?

I have such a structured code <?php $p=0; $delay=0; while($p<=16){ $p++; $delay+=0.2; ?> <div class="column wow fadeInDown" onmouseout="outside(<?=$p; ?>)" onmouseover="inside(<?=$p; ?>)" data-detail="<...
asked by 23.03.2018 / 20:13
1
answer

Presentation of the chart on page

I have this chart with the following query to the database: <html> <head> <script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script><scripttype="text/javascript"> google....
asked by 15.03.2018 / 16:24
1
answer

React Native Maps - CSS HELP

I'm trying to make an icon look under the mapview in my project, like this: Butnowitlookslikethis: Code:<Viewstyle={styles.viewMaps}>{this.state.ready&&this.state.region&&this.state.region.latitude!=null&&this.s...
asked by 08.05.2018 / 22:35
2
answers

how to show the result of a sql in different sections?

How do I make projects belonging to the same department in the same section? $sql = "SELECT d.nome, p.titulo FROM projeto p, departamento d WHERE p.dpto_id=d.id ORDER BY d.nome, p.titulo"; $dpto=null; foreach ($rows as $reg...
asked by 08.05.2018 / 21:22
1
answer

How to transform xml tags to table columns in html?

XML: <animal> <humano> <clientes> <cliente> <Nome_cli>Froslass</nome_cli> <Idade_cli>18</Idade_cli> <Ende_cli>Rua xyz</Ende_cli> </cliente> <c...
asked by 02.04.2018 / 16:17
1
answer

Angular validate password field with FormGroup

I have the following code: TS Code: ... onRegisterForm: FormGroup; ngOnInit() { this.onRegisterForm = this._fb.group({ nome: ['', Validators.compose([ Validators.required ])], email: ['', Validators.co...
asked by 14.03.2018 / 16:37
1
answer

Logo (in svg) appears in Mozilla and not in Chrome

Asyoucanseeintheimage,thelogoisappearinginMozillaandChromeisnot.IeventriedInternetExploreranditalsoappears,whichleadsmetobelievethattheproblemhappensexclusivelyinChrome.Doesanyonehaveanideawhatitcanbe?Asnippetofmycode:HTML:<headerid="main-He...
asked by 09.03.2018 / 02:14
1
answer

When loading site skips to the middle [closed]

Well this is my first question here, I created an account on stackoverflow just for this because I do not find the answer anywhere! I just renewed that link page hosted by hostinger in a free plan! When it is loaded it jumps to the end of t...
asked by 09.03.2018 / 21:58
1
answer

How to close a modal by pressing the "ENTER"

How can I close a bootstrap modal using the enter key: The code I'm using is as follows: <div class="modal fade" id="succes-action" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true"> <div class="modal-di...
asked by 30.03.2018 / 03:13
1
answer

How to get the value of a php variable and use it in the ajax request

I am creating a order page with the code below, what I want is that when I choose the quantity of the product, it already appears the total value of the product x quantity . If I set the var price_prod1 = 10; value to work, but in the s...
asked by 07.03.2018 / 21:13