Questions tagged as 'html'

1
answer

Hidden even Function ID generates error

As it was not clear I will redo the doubt. follow the code that works as desired. <html> <head> <title>Teste</title> </head> <body> <form action="/teste_andre.html" method="get" id="form1" onsu...
asked by 09.08.2017 / 20:38
1
answer

Is it necessary to use meta tags on every page of a site?

I created a multipage website. And my question is this: You need to put the < meta > on all pages of the site? (Biography, contacts, etc ...) I'm using the following tags on my site (mostly in index): <meta charset="utf-8"> &l...
asked by 02.12.2017 / 22:30
1
answer

Reload iframe within a modal

See my scenario. On the parent page I have 3 divs. modalFile2, modalFile2, modalFile3 in which I will call according to the page that I am. When I'm in the parent the links call daughter1 and add an iframe to the page I want, and so on....
asked by 18.10.2017 / 21:57
3
answers

generate randomly for a period of time in php

I have this code: <?php $array_number = array(); for($i = 1; $i <=11; $i++) { $value = rand(1,11); while (in_array($value, $array_number)) { $value = rand(1,11); } $array_number[$i - 1] = $value; } $serve...
asked by 19.01.2018 / 19:25
2
answers

How to refresh a bootstrap table after giving update?

Next in the lines of my bootstrap table when I click opens a modal where I can change the selected information after click. I wanted that right after I clicked the button to change, my table (and only it) would update without needi...
asked by 01.12.2016 / 15:09
1
answer

split an HTML file

I'm trying to do something, but I do not know how. Look at the code below (in html ) by clicking the "H" button a text field just below it opens. So far so good, but what I wish was that this text field, which ended up opening when I click...
asked by 13.12.2016 / 18:11
1
answer

Is there any way for CSS to override style in HTML? [duplicate]

I have an archiver containing about 82k HTML files, where there is a need to apply a CSS with structuring and visual standardization. However, I noticed that many of these files are styled via html using the style parameter. Is there a...
asked by 27.04.2018 / 23:38
3
answers

How to import an html page into another html? [duplicate]

I have a home page where there is a menu that opens dialogs. Today everything is in a html only, but I would like to separate it, ie unlink and leave this html from the dialog separated from the home page .     
asked by 08.01.2018 / 19:09
1
answer

Contact form

Good evening. Galera, next. I'm just starting out in HTML5 so I still do not handle it very much. I've done all the visual part (CSS) of a contact form (like course work), however I'm not very good with the html itself, so my question i...
asked by 16.12.2017 / 02:15
3
answers

How to send an array variable of objects via AJAX? [closed]

I have the following object: var pessoas = []; pessoas = { nome: "julio", sobrenome: "Henrique", idade: 18, amigos : ["Pedro", "João", "Isabella"] } I send the array friends via ajax like this: $.ajax({ url:'retira_falsos_a...
asked by 04.01.2018 / 12:38