In my studies of javascript with Jquery framework , I have come across several times with $.when() and .then() aligned. I wonder how they work together. an example that I came across was the code below.
$.when(loadView, setData)...
I have a web app that runs several ajax calls . My faculty professor challenged me to create a generic message and unite the entire error handling in a single function. Can anybody help me ?
function getShoes() {
$.get( "/Shoes/List", fu...
With the growth of web many people have abandoned desktop development, but some interesting technologies have come out, such as Electron :
Electron lets you create desktop applications with pure JavaScript through
of a runtime wi...
I have a project where I must accumulate hours worked for a service in a project, it should store in the bank the hours / days.
Then when started, if there is no previous time it starts from zero, but if there has already been a step previous...
I know there is a way (I've even used it on at least 5 systems that I've developed) to open the webcam through HTML5 and capture a photo (I do this using canvas ).
Html5 Camera Capture Sample
But I had a question: Can I capture this...
What does this anti-theft code in Javascript do?
<html><head></head><body onload="challenge();">
<script>
eval(function(p,a,c,k,e,r){e=function(c){return c.toString(a)};if(!''.replace(/^/,String)){while(c--)r[e(c)...
I have a OnePage page and the anchor links of the menus when they clicked they only " skip " for the section of screen below but I wanted them slid gently to the intended 'anchor' section.
I tried to put transition via CSS and I wa...
Having a given string, how to put the first letter of each word in large letters (Uppercase)?
For example:
original: 'a música é universal' High: 'A Música É Universal'
but also names like "anna-karin" common in...
What is the simplest way to format 1234213412341 to 1234.2134.1234-1 using JavaScript?
<script>
function formatar_valor(strvalor){
var formatado;
// formata
return formatado
}
alert(forma...