Questions tagged as 'html5'

0
answers

WebCam Canvas - Zoom [closed]

Is there a way, a command that allows me to change the zoom of the WebCam? In this code below is where I create my WebCam canvas for Snapshot on the site. I want to apply - zoom, ie increase the coverage area of the Cam. Is it possible?...
asked by 15.06.2015 / 15:16
3
answers

How to set a default option in select with data-live-search HTML?

I need to bring in the select a default option every time the page loads. But with the data-live-search plugin. Is this possible? <div class="row-fluid"> <select class="selectpicker" data-show-subtext="true" data-live-search="tr...
asked by 25.02.2016 / 13:43
3
answers

Problems with the structure of links in MVC

I'm working on an MVC project and I'm having trouble redirecting pages. The project is based on controllers and actions , which have the proper functions that call these files and call their methods, in this case actions. This is the HTML...
asked by 11.11.2014 / 14:09
6
answers

How to mount the HTML of a "select" via PHP, using data coming from the DB

I'm having trouble rightly mounting a <select> within PHP, with data returned by mysqli . I tried this way: <?php $con = new mysqli("localhost", "root", "senha","bancodedados" ) or die (mysql_error()); $query = $...
asked by 01.07.2014 / 19:36
2
answers

Grid with auto refresh html + angularJS

Well I have a grid and it needs to be ALWAYS updated because it contains information that needs to be updated dynamically. This grid is populated with a rest flame that returns me a json. I need the grid to be updated as soon as the json of t...
asked by 14.02.2014 / 17:37
1
answer

How to display an ASP HTML code in a Label sending by Code-Behind (C #) - ASP.NET

I'm having a problem, I've done several tests where I'd like to send a HTML code directly to a label from a C # method, where it would dynamically display the code on the screen. But when I send it, it does not render. public partial class...
asked by 15.05.2015 / 02:21
3
answers

How to remove the "whitespace-only text node" from the DOM that appears in the HTML

It seems that HTML by default puts damn " whitespace-only text node " between inline elements with this I get a "margin" between elements that I can not remove from DOM I know there are solutions like putting display:flex in the...
asked by 28.03.2018 / 15:31
2
answers

Equivalent hide and show in CSS [closed]

The code below does not run on all browsers: <button id="btn"> <img class="" src="/img/icone-formation.png" height="100%" width="100%" onclick="document.getElementById('f1').style.display...
asked by 17.01.2016 / 21:08
3
answers

Change readonly for several fields

I have several inputs with readonly="true" which, when I click the edit button, it should change to readonly="false", but I'm only able to do this if I create 1 script for each input. p> Would you like to make 1 script to change at all? I t...
asked by 15.10.2015 / 21:52
2
answers

Click on a h3 and focus on a form field

I am organizing a contact form, broken down into several parts. One of the things I need would be that when the user clicks an h3 (but can also be a div, anchor, or button) a specific field of this form gets focused. How could I accomplish...
asked by 05.08.2016 / 15:40