Questions tagged as 'html'

2
answers

Format table color CSS

I would like my table to look like this. ButwhenIaddthecontenttoit,itlookslikeI'mnotabletoleaveitasthetableabove. functionlistarProdutos(){varconteudo="<table border='1'>"; conteudo+="<tr>"; conteudo+="<div class='ind...
asked by 28.09.2017 / 22:00
1
answer

Why even with margin 0 and padding 0 is there still space between the elements?

I have 3 buttons next to each other and I wanted them to have 1px of margin just between them but it's getting much more: Thehtml:<divclass="popup"> <p id="popupText">TRUCO!</p> <div class="popup-buttons">...
asked by 23.09.2017 / 15:37
2
answers

Save a page from an HTMLPage (java)

I have a method that generates an HtmlPage, I would like to save to disk. public void gerarPaginaIndex() { try { final HtmlPage paginaIndex = WebClientFactory.getInstance().getPage(URL_INICIAL); this.criarPaginaEmDisco(pagi...
asked by 25.09.2017 / 13:58
1
answer

dropdown-menu does not work Bootstrap

UPDATE I am developing an application and I am making the menu and clicking on the Enter / Register it does not appear the items of dropdown-menu bootstrap does not work <meta http-equiv="Content-Type" content="text/html; chars...
asked by 30.09.2017 / 06:44
1
answer

Select md-option with ng-click

I have a page listing some job openings. Below these vacancies I have a form and in this form there is an option field to select the vacancy of interest. If the user clicks the vacancy of interest above, automatically in the form this option mus...
asked by 08.06.2017 / 19:22
1
answer

input tag and javascript

Hello, My question is the following HTML <input id="cakeDonuts" type="number" name="numCake" min="0" value="" onchange="updateOrder()"> <input id="glazedDonuts" type="number" name="numGlazed" min="0" value="" onchange="updateO...
asked by 12.06.2017 / 22:42
1
answer

Diving positioning

I have a problem positioning the divs of the products they do not align. link As you can see here in the CSS I have: .produto_em_destaque{ display: table; width: 70%; float: right;} .produtos_em_destaque{ display:...
asked by 26.06.2017 / 13:21
3
answers

Send message after the click of the submit button

How do I identify with PHP if a submit button was clicked? and after the click I want to send a click confirmation message !. Detail everything in PHP. !!! So it is not working not <form method="POST"> <input type="text" name...
asked by 28.06.2017 / 22:38
1
answer

Select filter stopped working

Hello, I need a help, I have a select filter that until yesterday was working, someone moved and stopped working, as I do not understand much of jquery, I decided to ask here. Note: The jquery file is still called normally. When the use...
asked by 28.04.2017 / 20:53
1
answer

Read Json in PHP?

I have the following code in my PHP : <?php $url = "https://api.cartolafc.globo.com/mercado/destaques"; $response = file_get_contents($url); $jogadores = json_decode($response,true); It should return the file json ,...
asked by 27.04.2017 / 01:07