Questions tagged as 'html'

1
answer

Limit inputs dynamically

I'm a little new to jQuery and would like to know how I can restrict the size of input dynamically inserted. An example: In the code below, the user can insert as many% s as you want, but I wanted to limit these inserts. Is it possi...
asked by 23.08.2016 / 22:16
1
answer

Dim the background when opening window / modal div

I tried to create something like modal , like this: .try-modal{ position: absolute; top:35%; left:25%; right: 25%; width: 50%; height: 400px; background-color: white; z-index: 2; } I call <div cl...
asked by 08.06.2016 / 16:32
2
answers

Case sensitive no form method?

I always use method="post" (tiny), but searching for tutorials on the internet, most use method="POST" (uppercase), does it make any difference? can cause problems?     
asked by 18.05.2016 / 22:18
1
answer

Why use container inside navbar's in Bootstrap?

I was learning to use Bootstrap's Navbar, and a question came to me. All the examples I found of using navbar, have just after the same a container. It's more or less like this: <div class="navbar navbar-default"> <div class="contai...
asked by 17.05.2016 / 05:03
1
answer

How to create a valid clickable image for W3C?

According to the response of this
asked by 13.05.2016 / 16:37
1
answer

How to disable checkbox without using disabled?

How could I inhibit changing checkbox without using disabled , since I want to send it via form. <input type="checkbox" name="option1" readonly="readonly" checked="checked"/> // esta alterando <input type="checkb...
asked by 15.03.2016 / 15:22
1
answer

Multiply SELECT value with INPUT value

How could I multiply the value of one SELECT with one INPUT and show it in another INPUT? <!-- MULTIPLICAR ESSE SELECT --> <select name="papel"> <option value="">Tipo Papel</option> <?php $query = $conn-&g...
asked by 11.08.2018 / 22:42
1
answer

Do not apply CSS rule on only one page

I have a CSS class that I would like not to apply when I'm on a page: example.com/test/ How can I do this with some CSS rule? This is the class: .section-name { display: none; }     
asked by 15.03.2017 / 21:19
2
answers

How to make full-page vertical slides that roll with the mouse scroll? [closed]

Is it possible to scroll the page by scrolling to a specific element (such as <section> or <div> )? It's like a vertical slide (section) that takes up the entire screen. As an example, this site I think uses mousewhe...
asked by 20.01.2016 / 21:43
2
answers

Get names of a form in a php page and put it in a select type list on another php page [closed]

I have 2 pages cadastrar_loja.php and cadastra_documento.php . In cadastrar_loja.php there is a text field named Nome da loja , I would like to get that name from the database, and insert it into a <select>...
asked by 25.01.2016 / 19:44