Shaare your links...
3299 links
L!NKS
Retour au blog
Login
RSS Feed
ATOM Feed
Tag cloud
Picture wall
Daily
Links per page:
20
50
100
◄Older
page 2 / 6
Newer►
114 results for tags
javascript
x
JavaScript Promises: There and back again - HTML5 Rocks
permalink
-
-
http://www.html5rocks.com/fr/tutorials/es6/promises/
asynchrone
javascript
promise
Javascript - L'objet RegExp
permalink
-
-
http://www.commentcamarche.net/contents/585-javascript-l-objet-regexp
javascript
regex
javascript - How to use querySelectorAll only for elements that have a specific attribute set? - Stack Overflow
You can use querySelectorAll() like this:
var test = document.querySelectorAll('input[value][type="checkbox"]:not([value=""])');
This translates to:
get all inputs with the attribute "value" and has the attribute "value" that is not blank.
permalink
-
-
https://stackoverflow.com/questions/10777684/how-to-use-queryselectorall-only-for-elements-that-have-a-specific-attribute-set
javascript
oop - Subclassing a class with required parameters in JavaScript - Stack Overflow
function Parent( a ) {
this.a = a;
}
function Child( a, b ) {
Parent.call( this, a ); // this is crucial
this.b = b;
}
Child.prototype = Object.create( Parent.prototype );
Child.prototype.constructor = Child;
permalink
-
-
https://stackoverflow.com/questions/8460493/subclassing-a-class-with-required-parameters-in-javascript
javascript
Does JavaScript have a method like "range()" to generate an array based on supplied bounds? - Stack Overflow
Array.range= function(a, b, step){
var A= [];
if(typeof a== 'number'){
A[0]= a;
step= step || 1;
while(a+step<= b){
A[A.length]= a+= step;
}
}
else{
var s= 'abcdefghijklmnopqrstuvwxyz';
if(a=== a.toUpperCase()){
b=b.toUpperCase();
s= s.toUpperCase();
}
s= s.substring(s.indexOf(a), s.indexOf(b)+ 1);
A= s.split('');
}
return A;
}
permalink
-
-
https://stackoverflow.com/questions/3895478/does-javascript-have-a-method-like-range-to-generate-an-array-based-on-suppl
javascript
Stockage des données locales : Web Storage - Alsacreations
stockage dans le navigateur : sessionStorage, localStorage
permalink
-
-
http://www.alsacreations.com/article/lire/1402-web-storage-localstorage-sessionstorage.html
javascript
Comment déclencher un clic sur un bouton en JavaScript au moment où la touche Entrée est pressée dans une zone de texte ? - Fiche pratique
permalink
-
-
http://www.journaldunet.com/developpeur/pratique/developpement/12273/comment-declencher-un-clic-sur-un-bouton-en-javascript-au-moment-ou-la-touche-entree-est-pressee-dans-une-zone-de-texte.html
javascript
jQuery UI Touch Punch - Touch Event Support for jQuery UI
permalink
-
-
http://touchpunch.furf.com/
javascript
jquery_UI
Regulex:JavaScript Regular Expression Visualizer.
permalink
-
-
http://jex.im/regulex/#!embed=false&flags=&re=(a%7Cb%5Cd%2B)*c
javascript
regex
html - JavaScript Form Submit - Confirm or Cancel Submission Dialog Box - Stack Overflow
<form onsubmit="return confirm('Do you really want to submit the form?');">
permalink
-
-
https://stackoverflow.com/questions/6515502/javascript-form-submit-confirm-or-cancel-submission-dialog-box
javascript
colResizable – jQuery plugin
plugin jquery pour avoir des colonnes dimensionnables dans vos tables HTML (sans jquery UI)
permalink
-
-
http://quocity.com/colresizable/#download
html
javascript
jquery
LESS (langage) — Wikipédia
permalink
-
-
https://fr.wikipedia.org/wiki/LESS_(langage)
css
javascript
less
AngularJs, par où je commence? | Angular-js.fr
permalink
-
-
http://www.angular-js.fr/angularjs-par-ou-je-commence/
angular
javascript
Best Javascript Grids | Flarnie Marchán
bibliothèques javascript pour éditer des tableaux.
Notamment :
http://www.editablegrid.net/en
et
http://handsontable.com/index.html
toutes deux dépendent de jQuery mais bon...
permalink
-
-
http://flarnie.com/2013/javascript/best-javascript-grids/
javascript
CoursWeb.ch - javascript - Apply et Call
Bon Javascript m'agace...
J'en ai besoin alors je me dis je fais ça propre avec des classes. Et alors je suis confronté au problème "this".
"this" a la fâcheuse tendance à référer à l'instance appelante (normal) ce qui devient rugueux quand on a besoin de "son this" dans une fonction appelée en AJAX dans "onreadystatechange" ou dans un "addEventListener". J'ai dû passer par des copies de "this" (var that = this), des "apply" ou dans le cas de "addeventlistener" par un "bind"...
Merci à Stackoverflow et à toutes les ressources en ligne !
onreadystatechange:
http://fr.openclassrooms.com/forum/sujet/ajax-onreadystatechange-et-this-en-poo
https://stackoverflow.com/questions/19298112/returning-values-from-the-event-onreadystatechange-in-ajax
addEventListener:
https://stackoverflow.com/questions/1338599/the-value-of-this-within-the-handler-using-addeventlistener
https://developer.mozilla.org/en-US/docs/Web/API/EventTarget.addEventListener#The_value_of_this_within_the_handler
plus je pratique javascript, plus j'aime python ! (mais bon, je progresse)
permalink
-
-
http://www.coursweb.ch/javascript/apply-call.html
javascript
EventTarget.addEventListener - Web API Interfaces | MDN
peut-être la solution au point précédent...
permalink
-
-
https://developer.mozilla.org/en-US/docs/Web/API/EventTarget.addEventListener#The_value_of_this_within_the_handler
javascript
javascript - The value of "this" within the handler using addEventListener - Stack Overflow
permalink
-
-
https://stackoverflow.com/questions/1338599/the-value-of-this-within-the-handler-using-addeventlistener
javascript
3 ways to define a JavaScript class / Stoyan's phpied.com
permalink
-
-
http://www.phpied.com/3-ways-to-define-a-javascript-class/
javascript
Time to remove jQuery - Development
des librairies utiles pour javascript (à la place de jquery) :
- domReady Let’s you know when the dom is ready (cross browser)
- Qwery : A compact, blazing fast CSS selector engine :
https://github.com/ded/qwery
- Bonzo : Library agnostic, extensible DOM utility :
https://github.com/ded/bonzo
- Bean : An events api for javascript :
https://github.com/fat/bean
- SuperAgent Ajax : with less suck :
https://github.com/visionmedia/superagent
Move.js : CSS3 backed JavaScript animation framework :
https://visionmedia.github.io/move.js/
Morpheus : A Brilliant Animator :
https://github.com/ded/morpheus
permalink
-
-
http://make-dev.tumblr.com/post/30013908789/time-to-remove-jquery
javascript
jquery
library
Il est temps d’avoir déjà quitté jQuery | MathieuRobin.com
permalink
-
-
http://www.mathieurobin.com/2014/09/il-est-temps-davoir-deja-quitte-jquery/
javascript
jquery
Links per page:
20
50
100
◄Older
page 2 / 6
Newer►