Questions tagged as 'html'

1
answer

Paragraph html does not "break" and content is hidden

I enter several comments that are received from the bank with the code below: $retorno = '<ul>'; while($row = mysqli_fetch_assoc($select)){ $retorno .= ' <li id="comentario-resposta-'.$_POST['id'].'" clas...
asked by 23.11.2017 / 22:03
1
answer

Swap tabs ngb-tabset with button click

I have two tabs and need to change tabs by clicking a button. I usually work with routes, but in this case I need to change only the tab on the same webpage. I have the following Tabs, TAB 1 and TAB 2. Considering that I am in TAB 1, what wou...
asked by 24.11.2017 / 17:14
1
answer

progress bar does not work jquery

I'm trying to make a progression bar work, but I do not know what's happening, it does not give any errors on the console, but the progress bar does not move. $(document).ready(function(){ $('#js-upload-submit').click(function(){ $...
asked by 26.11.2017 / 05:33
2
answers

No result when sending data from a form in JSP

I'm trying to make a mini-login screen, grab the data from the compare form and then redirect it to a JSP page. <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>Insert title...
asked by 23.11.2017 / 23:07
1
answer

Background dotted or striped in css

Does anyone help me make a dotted or striped background in css?     
asked by 25.11.2017 / 19:23
1
answer

How to enable or disable select closest?

I'm using Materialize CSS, I have a screen where I would like the Switch to be activated, the closest select becomes active so the user can select an option, and if the Switch goes back to inactive the select also come back to the...
asked by 25.11.2017 / 19:32
1
answer

How to create an array with data from a table html?

I need to put the table html data in a array . The current scenario does not allow me to add class or id to the <td> tags (which would make it much easier), later I started the jquery code but I do not know how to...
asked by 27.11.2017 / 12:25
2
answers

PHP / MySQL - Move from localhost to an online hosting

I created a website with PHP and a MySQL database using XAMPP. Now I would like to have the site online on a host, do I have to change the connection to the database where it says localhost? What procedures do I have to do?     
asked by 26.11.2017 / 14:16
3
answers

How to separate title and content in html?

<!DOCTYPE html> <html> <head> <title> Meu teste </title> <meta charset="utf-8"> <style> #titulo { background-color: blue; position:fixed; } &l...
asked by 20.12.2017 / 02:15
1
answer

Can I pass a result from a percentage calculation in JavaScript?

The calculation I was able to do with JavaScript, but the output of it has to be in percentage. <script> var mb = document.querySelector("input[name=medidab]"); mb.addEventListener("keyup", calcImc, false); function calcImc(){ var md_...
asked by 15.11.2017 / 06:37