Questions tagged as 'html'

2
answers

How to disable a text field for editing using jQuery / JavaScript?

Let's say I have a form with fields from 1 to 7. Something like: field-1 field-2 field-3 field-4 field-5 field-6 field-7 All of these fields are on a form. With Laravel, sometimes I experienced situations when I disabled a field with...
asked by 03.02.2014 / 15:13
1
answer

What is an SVG?

Nowadays it is spoken in quality of image and always connected to this type of affirmation occasionally appears this mysterious abbreviation. It seems to be SVG something really amazing, say your image does not get distorted when magnified. H...
asked by 07.10.2015 / 02:04
3
answers

How to stylize a "file" input?

I have this structure: <section id="cadastro" class="cadastroVersao pg-i"> <div class="titulo"> <h1><i class="icon-clientes"></i>Cadastro de versão</h1> <a href="<?php echo base_url...
asked by 01.10.2015 / 22:54
2
answers

Is it possible to add scroll-only overflow behavior in a table's tbody?

You can add overflow behavior with scroll only in tbody and still do not have to set fixed sizes in pixels without having to separate the header of the columns with the body, as seen in the plugins that provide grids ? css fo...
asked by 12.09.2014 / 16:06
3
answers

"href" attribute for JavaScript links: "#" or "javascript: void (0)"?

Popularly, there are two methods of creating links that execute a function in JavaScript, they are: <a href="#" onclick="myFunction();">Executar JavaScript</a> or <a href="javascript:void(0)" onclick="myFunction();">Exec...
asked by 21.12.2013 / 02:50
6
answers

How to simulate a higher resolution screen to check the behavior of a website?

Is there any way to simulate a higher resolution screen to see how a site behaves? I currently use 1440x900 and need to test the interface at higher resolutions.     
asked by 14.03.2014 / 02:10
2
answers

How to make the button Incline?

I am using img but it is not a good practice, so I would like to use a button with some css attribute. Is it possible?     
asked by 02.04.2015 / 21:40
2
answers

How to put a clickable area on a piece of an image?

I have this code on my site: .fixed-background {    position: absolute;    top: 0;    left: 0;    height: 100%;    width: 100%;    overflow: hidden; } img {    height: auto;    width: auto;    min-width: 100%;    min-height: 100%; }...
asked by 24.09.2015 / 15:55
4
answers

Is it correct to use a table in the page layout?

I made a data table for a colleague of mine here at work and used a table, except that it had no header, it had only 2 columns. And he told me that people hate table, which was for me to read about Tableless, and I did it, but I can not understa...
asked by 15.04.2015 / 15:49
6
answers

Sum of 2 inputs and appear in real time - Javascript

My question is this: I have two type text inputs. One person would put a number in input 1 and another number in input 2. When the person just finished filling in, the result of the sum of the two inputs would appear automatically in real tim...
asked by 18.09.2015 / 19:15