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...
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...
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.
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...
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...
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",...
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...
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...
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,...
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...