Questions tagged as 'html'

1
answer

How to host my angular application

I have the following directories in my angled application: node_modules/ src/ --client/ ----/app/ ----/index.html --server/ package.json print the files I would like that when the user accesses my site he redirect directly to src / cl...
asked by 27.08.2015 / 04:01
2
answers

BOOTSTRAP Editions

I'm using a bootstrap theme with background image but the image does not change. I went in the css, changed the background anyway and the image stays the same being a url that no longer exists. As you have nothing on the html code, follow the...
asked by 21.06.2017 / 13:39
2
answers

How to make menu with different drawing?

I do not know what to do, but I do not know which commands I use to leave the line diagonally. Follow the image below: I need to do only with HTML and CSS, thank you in advance. And ignore the numbers inside the blue square.     
asked by 27.06.2017 / 18:14
3
answers

How to fire a message with every click in jquery?

I have a 'form' to calculate the IMC index, with each click on a button displaying a message div with the result of the calculation, however I want the message to be displayed a once per click . This image shows my current code: Followtheon...
asked by 24.04.2016 / 16:09
2
answers

Field of the type time or decimal, how to solve?

I have in the system that I am developing a field called flow, which can be filled either with a decimal value of type 0.5 and 2.4 or with a time value, type 15 min and 5 h. What is the best solution when creating this field in my table? Leave...
asked by 28.04.2016 / 16:28
1
answer

Change the value of a h1 with jquery?

I'm making an ajax call and need to change the value of the <h1> tag with the response: $('#openTickets').ready(function() { var open = $.ajax({ time: 15, url: "/opened-tickets", dataType: "JSON",...
asked by 01.08.2016 / 16:10
2
answers

How to get the last (max) tabindex, from an html form, using jQuery

I need to get the last 'tabindex' of a form when the user clicks 'tab' or 'enter' back to the first one. Follow the current code: $(':input').keydown( function(event) { if ( (event.which === 13 || event.which === 9) && !event.s...
asked by 28.05.2015 / 19:23
2
answers

How to send two actions in a single form?

Hello, I have a pay-as-you-go button on my site, but when I click on it, I want it to take the form data and send it to another page (and then put it in the database). So when you click the payroll button it will send two actions. (one for the p...
asked by 06.07.2015 / 15:11
1
answer

How do I get a div to scroll down automatically?

I have a div with a lot of text, and I want it to load when the page div starts to do automatic scrolling showing the whole text ... html: <div id="corpo"> <p> Titulo da notícia, Titulo da notícia, Titulo da notícia,...
asked by 18.05.2015 / 15:40
2
answers

Do not load a CSS if IE8

Problem: I would like to not load the CSS if it is IE8 For all other browsers I want to load CSS I thought about doing <!--[if IE 8]> (deixar vazio) and put for each type of browser the CSS Webkit, Gecko, but I think it is not t...
asked by 06.04.2015 / 17:07