Questions tagged as 'html'

2
answers

How to add items to an array correctly?

I'm trying to create arrays with days of the week. "Apparently" seems to work: $array_dia_da_semana = array("DOMINGO","SEGUNDA","TERÇA","QUARTA","QUINTA","SEXTA","SÁBADO"); $array_dia_da_semana_d = []; $array_dia_da_sem...
asked by 14.08.2017 / 18:57
1
answer

Ajax sending _POST without max character

In this ajax the post sends more than 1000 caracters: $.ajax({ url: 'inserir.php', type: 'POST', data: { inseason: document.getElementById('comment').value }, success: function(result) {...
asked by 11.11.2017 / 20:12
1
answer

CSS Carousel within another image

I need to make a carousel / slideshow of images only it happens inside another image. Example: I have this picture of the notebook in png, the slideshow should happen inside his screen. However, controls like arrows and "balls" to indicate w...
asked by 21.08.2017 / 15:15
1
answer

Save value of a select and display

I'm developing a CRUD from a web system. In the employee's registry I use two select elements to display the options, when registering everything works ok, the information goes to the bank. The problem is when you click edit and bring this infor...
asked by 20.08.2017 / 20:35
1
answer

How to change the color of the rows of a table according to the value of each table

I'm having trouble developing a function that changes the color of a <tr> based on a specific value of a <td> I need this function to do for each row, since they contain different values. At first the values are "...
asked by 06.07.2017 / 15:49
2
answers

How to make a page with full blocks using bootstrap?

I need to do something according to the image, using bootstrap. Has anyone ever been through this? Do you have any idea how to do it?     
asked by 22.08.2017 / 13:31
1
answer

Problems with image localization in Spring Framework

I'm using Spring and Thymeleaf: I have an image in the directory:    resources / image / telescope.png When I open the posts.html (home) page, located at the address below, the image is displayed.    link Code to call the imag...
asked by 05.07.2017 / 19:10
2
answers

Stylize input via jQuery Validate

I'm using the jQuery Validate plugin to validate a form. When I declare the rules in the input declaration the form turns red when it does not fit the same, and blue when they fit. Here is an example of an input statement with inline rules: &l...
asked by 18.05.2017 / 17:45
2
answers

Pass the search input to another file

I'm doing a car registration project, it's almost at the end, but by altering the style file a bit and tinkering with the list to leave AJAX without refresh a bug strange happened, I've already tried several ways to solve : input w...
asked by 26.07.2017 / 14:55
1
answer

How to show result via ajax and jquery without refresh on page

I tried to implement an Ajax call on a project and I can not identify the error. I have a form for posting status and I would like it as soon as I post something it does not refresh on the page and rather it shows the result, then in a div. I...
asked by 16.07.2017 / 08:03