Questions tagged as 'html'

2
answers

Submit multiple forms with AJAX, one at a time

I have a code that I get with PHP registered students in my bank, and I make a for it to have 1 form for each student. Each form has its button submit, which takes you to the AJAX function to serialize form. This is my form's tag (which is wi...
asked by 08.01.2016 / 17:28
3
answers

How to make the background inside a div occupy the entire body

I want to put an image inside a div that occupies a whole body, that when you increase the screen with the mouse scroll, it continues to follow the size of the whole screen. Example site with background like this: link When you enlarge the scr...
asked by 31.03.2016 / 20:56
2
answers

Why is PUBLIC and xmlns declared using site w3.org?

I've always had this doubt, because most sites declare PUBLIC arguments in the !DOCTYPE and xmlns tag in the html tag and because the values of these arguments are always w3.org in>? I searched several times but did...
asked by 23.12.2015 / 18:27
2
answers

Problem with UTF-8 [duplicate]

Good. I'm doing a project, and I have several accents in my text. I already joined: <meta charset="utf-8"/> in my code and still did nothing and I do not understand why ... Any help ??       
asked by 06.01.2017 / 11:59
2
answers

Form only submits with Enter key

Inside the backoffice of a store based on Prestashop V.1.6.1.3. When I try to register a product, a very strange problem occurs that does not show error in anything even using the debug mode connected: define('_PS_DEBUG_DEV_', true); define...
asked by 11.11.2016 / 20:00
5
answers

How to make font size fit automatically to the size of a div

Hello, I have a div of 300px by 300px , in it I leave a text that comes from a database, the problem is that there are times when the text inside the div exceeds the size of the same, leaving impossible to print. I need to know if yo...
asked by 27.09.2016 / 18:43
3
answers

Automatically click when opening site

Yesterday I did this question , and everything went well. What I need is that when I open the site directly on the link www.mysite.com/test it open exactly where the "test" is, I used scrollTop for navigation. So, I think the ideal is to be...
asked by 18.09.2014 / 18:39
2
answers

Name not printing

What I wanted was to get the name of the person shown with the alert but I'm not able to My html code var nome = document.getElementById('id1').value; function clique(){ alert(nome); } <input id="id1" type="text"/> <butt...
asked by 02.10.2018 / 22:06
3
answers

Concatenate a link inside a href attribute with a variable?

I would like to know how do I concatenate a link within a href attribute with a variable? Note must be something 'inline' . I use a platform that does not let me use scripts inside the page so the inline reason. Example: var teste = [x];...
asked by 09.05.2014 / 16:47
2
answers

How to show only the numbers of a cpf

Well, the question asks me to read a cpf, and show it without the dots, I tried to do it using a C logic, but the javascript does not think it has that, which I have to change to have the result My html <!DOCTYPE html> <html> &l...
asked by 02.10.2018 / 23:31