Questions tagged as 'html'

1
answer

Equal shadow effect on gmail login screen

How to do the same shadow effect by clicking on the show / hide password same button you have on the Google login. I have tried to do with the pseudo-element: before : focus but I did not succeed. const btn_password = $(".viewPasswor...
asked by 05.12.2018 / 19:47
1
answer

How to run a hide in JavaScript from one part of the page to the other:

Sorry for the confusing question, I'll try to explain it better: I'm making a website, and I've used pages that fill the entire screen, and they center the content, one below the other. There is also a menu at the top, with a transparent back...
asked by 13.12.2018 / 12:50
1
answer

How to make the HTML table inside another table occupy the entire screen?

I have an HTML table with 3 columns and 3 rows and for each cell in this table I have another HTML table with 3 columns and 2 lines and I'm trying to make it work evenly across the entire screen. I tried to add width:100% and...
asked by 24.11.2018 / 23:35
1
answer

I need to fill 2 fields using select

I have select with the following values in option : <select id="frutas" name="frutas" > <option value="">Selecione...</option> <option value="Maçã - 10.00"> Maçã </option> <option va...
asked by 02.09.2016 / 02:00
1
answer

Delegating events to dynamically generated elements

I'll try to be more specific. I have a <ul> list that is populated via jQuery: var $imovel = $("#lista-resultados-pesquisa"); $.ajax({ type: 'GET', url: 'imovel.json', success: function(data) { $.each(data.imovel,func...
asked by 04.06.2016 / 16:29
4
answers

How can I capture the name of an html form and put it in a variable in Javascript

I know how to do it with PhP but to catch a little bit with javascript, I wanted to use the "name" and "email" fields to put what the user types inside a variable name and another email within JavaScript. >     
asked by 03.06.2017 / 05:21
2
answers

Make a hidden form

I'm developing a basic CRUD, and I need it when the user clicks EDIT, open a form below, or the side, it does not matter, with the fields for it to edit such information, and when you click OK, the field disappears and show the edited fields. &...
asked by 29.05.2016 / 19:59
1
answer

How do I check if an iframe has loaded completely

So, I'm producing a site where I'm using iframes with other sites within it, see the image below: Code:<iframewidth="100%" height="747px" src="www.site.com" id="iPrincipal" scrolling='no' frameborder="0" allowfullscreen="true">...
asked by 07.02.2016 / 22:04
2
answers

How to modify the color of a tr according to the data of a td?

I own some tr in the table that contains the tr-child class and would like to change their color when the value of the fourth column of that tr is> 0. Is this possible with jquery? I had already done something ... $('.tr-child td:nth-...
asked by 11.02.2016 / 12:33
1
answer

How to create validation to ask if the user really wants to leave the page? [duplicate]

I have a page where the user will edit fields that are in a form. This data comes from the database. The user can edit them, however, in the end he can write (that is, he will write / do update in the database) or he can close. I want to ma...
asked by 29.09.2016 / 13:54