Questions tagged as 'html'

2
answers

Validate captcha before sending form

I need a very simple captcha, but it can be validated before the form is sent, how can I do that? I currently use this: index.html <form method="post" action="valida.php" id="form" name="form"> <!-- campos --> <d...
asked by 15.08.2016 / 22:22
1
answer

How to make a horizontal embossed line?

Many sites use a sort of <hr> embossed, eg: It's been a while since I've been trying to do it on my hand without success. I also do not find anything about it on the internet <div> &nbsp;<hr>&nbsp; &...
asked by 10.10.2016 / 22:13
1
answer

Prevent indexing of page clippings

If you cut a page by separating head , nav , etc ... And pull everything with include on index.php , will Google index those cut pages? I want to separate some parts by creating head.php and nav.php , the...
asked by 15.03.2017 / 12:41
1
answer

Modal is not scrolling

CSS: .modalDialog { position: fixed; font-family: Arial, Helvetica, sans-serif; top: 0; right: 0; bottom: 0; left: 0; background: rgba(0, 0, 0, 0.8); z-index: 99999; opaci...
asked by 10.03.2017 / 21:47
3
answers

How do I know if a record has been added to the database?

Hello, I'm working on an alert system, when a larger than normal data is registered in the database an alert has to appear on the page where the user is browsing. The problem is that I do not know how to check if an element has been added to the...
asked by 15.07.2016 / 23:08
2
answers

Add CSS attribute when input is selected via JQuery

I'm doing an answer validation application for a given question, I need to add a <input type="checkbox"> to box-shadow attribute of the answer when <textarea> is selected. What I tried to do in JQuery did not have a...
asked by 29.06.2016 / 14:46
2
answers

How can I send information from my input automatically by javascript?

How can I submit information from my <input /> automatically? I wanted this automatic process to be controlled by the input field size. For example, when the value reaches 8 characters, it automatically sends and moves to another...
asked by 04.05.2016 / 13:10
1
answer

Pin menu to the top of the page when scrolling down

I have a div with height 100% and then a navbar . I would like that when the page was down the navbar would stick to the top of the page. CSS ul.navbar { list-style-type: none; margin: 0; padding: 0; overflow: hidden;...
asked by 29.01.2017 / 03:58
2
answers

What is the combination of table and float?

Everyone who plays web programming has gone through this: .children { float: left; } <div class="parent"> <div class="children"> Teste </div> </div> If you use Inspect Element above you may...
asked by 02.02.2017 / 13:44
1
answer

How to add input dynamically after second header table

I have a problem, I would like to insert inputs dynamically into a table with more than one header, in my script when clicking on the image of + lines are being added after the first header but not in sequence, in the following lines to t...
asked by 25.01.2017 / 11:44