Posts by Marcus • 429 points
10 posts
-
1
votes2
answers72
viewsQ: Convert string in array format into an array and retrieve values
In the database I have a TEXT where an array is saved in this format: [ [ resumo: null ] [ datainicio: 2015-09-17T00:00:00.000-0300 ] [ datafim: 2015-09-22T00:00:00.000-0300 ] [ equipamento: 3421 ]…
-
1
votes0
answers386
viewsQ: Integrate validate.js with Dropzone.js
I integrated Dropzone.js with a form, and would need to validate the fields. I have the following code (it’s not working, but it’s what I need to "join", in case): var Galerias = function () {…
-
0
votes2
answers1547
viewsQ: Problems using Dropzone.js in a form
I want to add fields to a form that uses Dropzone.js to upload files. When I add the files to upload, the screen looks like this: var Galerias = function () { return { //main function to initiate…
-
2
votes1
answer890
viewsQ: Redirect .com.br domain to . com
I have two domains: the main one is . com and the secondary one is .com.br I need to make sure that every time you go www.dominio.com.br it redirects to www.dominio.com, even when it has a…
-
1
votes1
answer334
viewsQ: Help with SQL to sum daily between dates
I have two tables: company and walking In the table walk, I have the input date, date, value I would like to select all companies, and list it and the total amount the company spent on daily rates,…
-
6
votes2
answers277
viewsQ: Problem with Animate.css in fonts in Safari
I’m having problems with font rendering that have effects from the Animate.css plugin And that only happens on Safari. Website link. As an example, the first three links of the menu are without any…
-
5
votes3
answers9393
viewsQ: Set CSS according to browser
I found a command to change CSS in Firefox: @-moz-document url-prefix() { body { background: #f00; } } This command will put a red background only in firefox, for example. I found it very useful,…
-
10
votes3
answers581
viewsQ: What is the best way to load JS?
I was facing problems with the shipment of JS, mainly by IE8, and I came up with this doubt. I researched a lot, I ended up improving some things. Currently, I upload all JS files at the bottom of…
-
-1
votes1
answer169
viewsQ: Test equal resolution Netshoes website
I was testing the Netshoes site in several resolutions, and saw that it is no more than 1300px and is at least 950px wide. When you lower the screen, it does not adjust (like using the bootstrap,…
-
5
votes2
answers230
viewsQ: How to make a site that fits between 970px and 1300px
I need to make a site that has a minimum resolution of 970px, but that fits up to 1300px wide. Researching, I found something like this: .container-fluid { margin-left: auto; margin-right: auto;…