Questions tagged as 'html'

1
answer

Play two audio at the same time

I have an audio repository on my website and I would like to be able to play more than one at a time, but I can not figure out how to do it. I leave the code in case anyone knows the answer: var $player = $('.js-audio-player'), $pl...
asked by 18.04.2018 / 14:41
4
answers

Do hover in a div and apply hover in a brother div?

I have the following code: <div id="contenido-plano"> <div id="plano"> <img class="img-sensor" src="http://placehold.it/800x600/eee"> <div style="top:10px; left:100px;" class="sensor ui-corner-all ui-state-highli...
asked by 17.04.2018 / 22:41
1
answer

Redirect from Login in html

I'm trying to make a login in html and validate if the username and password are correct with a javascript (for the moment I only see if username and password are the same), and depending on whether they are correct or not redirect me to one pag...
asked by 31.03.2018 / 19:46
1
answer

Organize buttons within List Group Item

I want to make a kind of "To Do List" with delete and edit buttons but every time I add a new element, these buttons are badly organized, they are left as follows How can I get the buttons to be well centered within the cadfa element of...
asked by 06.04.2018 / 20:18
1
answer

How to center the crosses in the box?

Hi, I have a problem in the html file, I'm trying to adapt a code that I found in Google of a game, all three in a row. The problem is that I change the original size and when it comes to centering the "X" I do not get it for laps I give it. The...
asked by 10.04.2018 / 13:09
3
answers

Scroll from one div to another div in angular

hello I have a button to which I want that when clicking on this scroll to a div that I have below <div class="barra_ver"> <input type="button" name="bajar" scrollTo="sectionB" > </div> the button is inside...
asked by 01.06.2018 / 18:18
3
answers

Problem sending form with AJAX

The "success" of the AJAX submission function works, but the "url" does not do its function of executing the code. Just check if the directory exists and then go to "success"; If in the "url" I put a false directory it does not go to "success"....
asked by 03.06.2016 / 08:26
1
answer

Center text vertically in a DIV with flex + span style

I have a problem in a div when centering text vertically using flex in CSS. When you put a span style, the text contained in the span jumps to another column! .TEXT {height: 200px; font-size: 20px; text-align:center; align-items: cent...
asked by 04.11.2017 / 13:46
2
answers

redirect html page when trying to enter from the browser

I need to avoid entering an html address, that is, if someone tries to enter from the browser, it directs it to the main page. On the other hand, it is only possible to access from the main page. I would like to do it from htaccess, my js is...
asked by 03.11.2017 / 17:24
3
answers

capture the values of the option regex attributes by groups

I have this regular expression <option\s?(value="(.+?)?")?\s?(selected="selected")?>(.+?)<\/option>  validating in the content of a page the option labels of a select that are created dynamically. I need to capture the value i...
asked by 15.11.2017 / 17:41