Questions tagged as 'html5'

1
answer

validate date is not less than today's

I am trying to do a validation, where the date chosen and the time is not less than today, I can not use any other framework or library more than js or jquery <script> $(document).ready(function(){ $("#fecha").change(functi...
asked by 22.11.2018 / 00:11
0
answers

Problem with the input type search in Mozilla browser

I was doing tests with the <input type="search"…> tag in HTML5 on my website and it works perfectly. There is only one small detail and I only saw it in the browser Mozilla Firefox (not in Chrome , IE / Edge or Opera ) It...
asked by 20.11.2018 / 17:54
1
answer

modify .css file from a .js file

I want to know if you can insert this .container-box .formulario: nth-child (3) {     display: block; } from a .js file to a .css file or if I can change the number 3 of the nth-child (3) What I'm looking for is to do as an animation...
asked by 16.11.2018 / 07:50
0
answers

Hide a menu in Bootstrap 4

I have a menu made with bootstrap 4 using navbar and dropdown , until here everything works fine. The menu code is as follows: <nav class="navbar navbar-expand-lg navbar-dark bg-dark navbar-static" role="navigation"&g...
asked by 16.11.2018 / 20:31
0
answers

Create a view of a table in transposed HTML5

The way that at least I know to create a view of a table in HTML5 is the following: <table style="width:100%"> <tr> <th>Firstname</th> <th>Lastname</th> <th>Age</th> </tr&...
asked by 18.11.2018 / 01:50
1
answer

DataTable does not work when I use dynamic table by ajax

I am starting to use the DataTable pluggin with dynamic load of rows that I get from the server. The data is obtained by Ajax and displayed on the screen. The problem happens that the pluggin does not recognize these rows, although th...
asked by 15.11.2018 / 13:36
1
answer

Can an element created in jquery create a brother?

I have created an element in jquery and I have stored it in a variable as I show it below: x = $("<tr><td> Texto </td></tr>"); and if I print it in console in this way console.log (x [0]) print me the following &...
asked by 12.11.2018 / 22:34
1
answer

Set the start time of a video in hml5

I have a simple code in html5: <video width="800px" height="450px" preload="auto" autoplay> <source src="video1.mp4" type="video/mp4"> <source src="video1.webm" type="video/webm"> <source src="video1.ogv" type=...
asked by 12.11.2018 / 23:55
0
answers

how to make requests from ajax to python and sqlite

Hi friends, I have a question which I do not know what to use, I'm new to web programming and I know enough to create a web page, what happens is that I want to make an App and using a compiler of code like cordova which allows me to create an A...
asked by 12.11.2018 / 18:55
0
answers

how do I parse data from an html in real time?

I'm trying to read data from a local html file. A script causes one of the tags of this html to increase in value. My intention is to obtain this value. I am parsing the html file with the BeautifulSoup library but it always reads the initial ht...
asked by 18.11.2018 / 20:19