Questions tagged as 'html'

1
answer

Give hide or show when clicking another element

I have 4 threads, and I would like to display only what I clicked, and if another is open close, I know how to do this with jquery, but I'm doing it in a way that I do not think is more "correct", I leave the code too long putting too many const...
asked by 02.10.2017 / 22:37
1
answer

How to make animation occur several times

I have a project where I imported animate.css so the transitions would be funnier, but one of them only occurs to me once. var check = true; $(document).ready(function(){ $(".p2").hide(); $("button").click(function(){...
asked by 29.09.2017 / 13:08
1
answer

Datepicker Bootstrap does not work

I have a Datepicker bootstrap, but when I click the button next to the text box, that calendar does not appear. I thought it might be some missing link or script, but I always just find the datepicker code without the links it needs to do....
asked by 29.09.2017 / 15:02
1
answer

How to position the form in the center of a DIV?

body{ background: #EFEFEF; font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif; } .create-box{ background: #DF5B5D; border: 10px dashed #FEFEFE; max-width: 550px; min-height: 8...
asked by 06.03.2018 / 22:54
3
answers

Press button and "CURSOR / or ANYTHING" appears until operation is finished

I have the following code in javascript and ajax: function marcar_consulta(id_paciente,id_horario, data_consulta ) { $.ajax ({ type:'post', url:'insert_consulta.php', data:{marcar_consul...
asked by 26.09.2017 / 17:56
2
answers

Save after hiding a div

I use a Jquery code to hide a div, and I would like that when I click the close button it will save and prevent it from being displayed again to the user when the page is reloaded. $(document).ready(function() { $(".info-game--remove")...
asked by 21.11.2017 / 16:50
2
answers

How to draw dots between one image and another with HTML5 and CSS3?

I have icons, separated in divs, and the original layout has these dots. I tried using images, but it misconfigures my layout. How do you put these points between images?     
asked by 22.11.2017 / 12:18
1
answer

Problem with background and linear-gradient

I'm trying to make a background for body using an image and a linear-gradient , in loading the gradient appears for a moment, but soon is replaced only by the image, as you can see below. body { background: url("https://up...
asked by 22.03.2018 / 19:02
2
answers

Alignment of all checkbox to the right

How do I just align the checkbox on the right? html { font-family: tahoma; font-size: 16px; padding-left: 3px; } form { width: 600px; margin: 0 auto; } fieldset { border-radius: 5px; border: 2px solid #4283f2...
asked by 25.06.2018 / 19:41
3
answers

How to do when checking a checkbox it changes the background color of a table from a td and when descending it returns to its normal color

Well, I have this code, and it works in parts, when I check the box it changes the color of my td, but when I unknow the color does not return to normal, could anyone help me? Thanks in advance. $('.checkbox-regularC').click(function(){...
asked by 22.06.2018 / 22:05