Posts by Kirmayr Tomaz • 440 points
15 posts
-
1
votes2
answers328
viewsA: Gulp Watch does not update
Modify your js and css file ./js/app.js for /js/app.js ./css/estilo.css for /css/estilo.css he seeks a performer like that ./css/estilo.css.js , then as he does not find he puts everything blank by…
-
4
votes1
answer706
viewsQ: How to create a module in npm?
The idea is to get this module down npm install and be able to run this package: npm install nome-do-modulo --save Once downloading could be run in my shape design below: nomeDoModulo =…
-
1
votes3
answers1178
viewsA: Apply class with innerHTML
To add and remove a specific class from the element '#totalOp' you can use the interface ClassList() that can be found on the property classList of its element. One ClassList() has more than 2…
-
2
votes2
answers508
viewsA: Case Insensitive - Jquery Search System
No need to use any such function, javascript has a native function to make everything high toUpperCase() $(function(){ $('input[type="text"]').keyup(function(){ var searchText =…
-
1
votes1
answer48
viewsA: Problems with fullpage site
This responsiveness problem occurs because of the plugin, it limits your screen to at least 980px, was testing the mobile version and when I took the plugin worked, hence the author’s plugin Alvaro…
-
1
votes1
answer807
viewsA: Is it possible to "hide" the browser toolbars, bookmarks and the like?
You can’t do it the way you want, but there are two ways to do something like this. Using an HTML5 API Full Screen, to leave in full screen Using making a desktop application with Electron, using…
-
2
votes1
answer962
viewsA: Condition "if and Else" for sending Ajax, taking the text of the <span> tags?
Based on what you said to change the span. First define a parent that is both for the approved how much for process. In the example I did put the div with the class=taskid then it works as follows…
-
7
votes1
answer2071
viewsA: Insert input value into array
Just put the name of the field with keys at the end.nomedocampo[]. Hence assuming this is a form, when you send with a post to the backend. backend will understand that this set of fields with the…
-
0
votes3
answers630
viewsA: Problem accessing api using jQuery $.ajax
The mistake that is happening is because of CORS as the staff of mentioned. Looking at your Postman log the best way to resolve this is by enabling backend for other domains . In your case, as is…
-
0
votes4
answers1194
viewsA: Contents of a JSON in a table cell
When the data request is performed at this point below $.getJSON('../js/gcs.json', function(data) { the best way is to scan this object called date and insert dynamically with the append jquery…
-
2
votes2
answers3659
viewsA: How to send data from a form without the Submit button and without updating the page
Well the simplest way to do this is by using jquery and the serializeArray I made an example for you to see how it works. I take the form with the selector $() I run Event.preventDefault() to stop…
-
0
votes1
answer41
viewsA: CSS3 and HTML5 Shape-Outside
One solution to do this would be using Clip-path as in this example, has up to the one website that will automatically generate mind but does not have support for all browsers But the best solution…
-
2
votes2
answers530
viewsA: How to take the src attribute from a list of images and create an array using javascript only?
Using only pure javscript, you can pick up all the images with querySelectorAll and then scanning the array and passing src to another vector //pegando todas as imagens dentro da div com classe…
-
1
votes2
answers2828
viewsA: Change input value source Submit and reset
No need to use placeholder using ::-webkit-input-placeholder just put font-family: 'Miriam Libre', sans-serif; that will work input[type="submit"], input[type="reset"] { font-family: 'Miriam Libre',…
-
2
votes2
answers145
viewsA: Quantity of items aligned vertically according to height of div
In my view the best syntax option is using flexbox display:flex Adding to the father flex-direction:column To grow in column format with flex-wrap:wrap; When the column space of a column is…