Questions tagged as 'html'

1
answer

Invalid parameter number: parameter was not defined in PDO PHP

Good day community, I have this problem when wanting to save data in my database, I am creating a SignUp, but since adding "FDia", "FMes" and "Fño" to my form and it is stored by PHP , throw me that error, and investigate other related qu...
asked by 27.01.2018 / 21:25
1
answer

Why node.replaceChild does not work?

Good, I have a carousel of bootstrap in which, when I do click in the images that are replaced by a video server. This is the code of one of the items: <div class="item active" id="unboxing" onclick="PonerVideo(this)...
asked by 23.01.2018 / 10:21
1
answer

Disable HTML button in JavaScript

I want to make a function in the HTML code itself that every time we press a button a meter adds up to six and when it reaches the limit (6). Leave the button disabled. Any help? This is the button: <button type="button" onclick="r...
asked by 10.10.2017 / 18:12
2
answers

Do not remember Login credentials [duplicated]

I have a login form and I do not want the email and password credentials to be autocompleted, that is, when the user reaches the form it is blank without the previous user's data or the same, and rehearse with autocomplete="off" in for...
asked by 13.02.2018 / 13:30
1
answer

How to refuse to surpass the father div

If I have a div inside another, like this: #padre{ width:300px; height:300px; background-color:lightpink; position:absolute; top:20%; left:15%; border-radius:150px; border: 2px solid purple; } #hijo{ width:300px; height:1...
asked by 13.09.2017 / 02:16
2
answers

How to add a table dynamically with jquery?

I am trying to add a table in which encloses the inputs that I show below, the headers are static but I have not been able to add them successfully because if I create the table the delete button stops working, clarify that this button was desig...
asked by 05.09.2017 / 21:34
2
answers

Use a response text to define a section break

I need to create a form using a script, it should have the distinction of being divided into several pages. The functionality that I must generate is that in the first screen ask for the email, and when clicking on next one you should check if t...
asked by 27.06.2017 / 17:51
1
answer

How to create a modal window with just HTML and CSS?

Hello friends, could you please explain me in detail how to create a modal window with just HTML and CSS. What I plan is that when I fill out a form and click on the button, a modal window will open saying that the information has been sen...
asked by 25.05.2017 / 02:29
2
answers

problem with the accents in fpdf

I have this code and when I save the pdf I get some strange letters. someone who can help me with this. <?php if(strlen($_GET['desde'])>0 and strlen($_GET['hasta'])>0){ $desde = $_GET['desde']; $hasta = $_GET['hasta']; $verDesde = d...
asked by 17.06.2017 / 23:52
2
answers

Simulate enter jquery

I need to simulate an enter in jquery I have the following code: $('').trigger(jQuery.Event('keypress', { keycode: 13 })); But this is done on an element, with an id or class, I need to generate the enter automatically without needing to re...
asked by 08.06.2017 / 00:50