Questions tagged as 'html'

3
answers

Delay before showing a div

Ok, I'm not realizing what's failing me. My idea was when to hover over a div, show the div that was hidden. .main_container:hover .hidden_container { display: block; } .hidden_container { display:none; } <body> <...
asked by 20.06.2018 / 23:34
1
answer

Form sending to bank when updating page

Hello, I have a problem on my form which is as follows. I fill in all fields and click the submit button and everything works fine. When I give an F5 to update the site, it resends the same registration I made for the bank again. If I keep gi...
asked by 25.12.2017 / 16:29
2
answers

Problem Aligning content with CSS [closed]

You can see right on the site at this link: link Can anyone tell me why the episode grid is looking like this: ThecodeI'musingis:<divclass="row"> <?php $counter = 0; $episodes = $this->crud_model->...
asked by 11.12.2017 / 15:43
2
answers

Hover with two effects: increase and decrease width of different divs

I have 5 divs forming a column. I want when I hover over one of the columns that column will increase the width by 4% and the rest will be 19%, causing an accordion effect. I was able to do with jQuery, however it has a delay on the...
asked by 13.12.2017 / 20:40
1
answer

Numbers in format of cpf (JS)

I get numbers from a cpf coming from the API, then it goes to a table that I did, except that the numbers are not in the format of cpf xxx.xxx.xxx-xx and I would like it to stay, but I do not know how . You just have to click on login and go to...
asked by 14.12.2017 / 13:38
2
answers

Tinymce does not work with append

When I add a textarea directive in the html the tinymce works, but with the append of jquery, like this: $(".nova_questao").click(function(){ $(".questoes").append( '<div class="questao">'+ '<h4 class="h...
asked by 04.11.2017 / 15:31
2
answers

Date html with jquery

I have a question. I'm going to make jquery in charge of inserting the images depending on the width, and each image will be in the data-mobile and data-desktop. <img class="data-img" src="" data-mobile="url" data-desktop="url" /> $...
asked by 06.11.2017 / 19:34
2
answers

How to position a button anywhere on the screen, in html

I'm trying to position a button type button in the center of the screen. For this, I put it in a div , and applied to that div a css that arrows its position in the window. However, the button continues to appear in the left corne...
asked by 11.04.2018 / 22:11
4
answers

Select all checkbox when clicking on a checkbox

I tried the solution here in the forum, however it did not work. I want to select all checkbox by clicking only 1 checkbox (select all). Here is my code:                                                            &l...
asked by 17.04.2018 / 20:17
2
answers

How to create a menu of tabs like Stack Overflow

I would like to know how I can do to have two links as tabs, for example: <a href="#">Abrir Elemento 01</a> <a href="#">Abrir Elemento 02</a> and clicking on one of these links opens a div with the content co...
asked by 07.10.2017 / 05:04