Shaare your links...
3325 links
L!NKS Retour au blog Login RSS Feed ATOM Feed Tag cloud Picture wall Daily
Links per page: 20 50 100
◄Older
page 4 / 6
Newer►
114 results for tags javascript x
  • Element.querySelector - Web API Interfaces | MDN
    permalink -
    - https://developer.mozilla.org/en-US/docs/Web/API/Element.querySelector
    javascript querySelector
  • DOM : querySelector et querySelectorAll - Alsacreations
    permalink -
    - http://www.alsacreations.com/article/lire/1445-dom-queryselector-queryselectorall-selectors-api.html
    javascript querySelector
  • Bookmarklet Builder
    permalink -
    - http://subsimple.com/bookmarklets/jsbuilder.htm
    bookmarklet javascript
  • La gestion des événements en JavaScript - Alsacreations
    permalink -
    - http://www.alsacreations.com/article/lire/578-La-gestion-des-evenements-en-JavaScript.html
    javascript
  • Window btoa() Method
    encode/decode base64 en javascript :
    var str = "Hello World!";
    var enc = window.btoa(str);

    var res = "Encoded String: " + enc;
    document.getElementById("demo").innerHTML=res;

    et atob() de base64 -> string
    permalink -
    - http://www.w3schools.com/jsref/met_win_btoa.asp
    base64 javascript
  • vue.js
    permalink -
    - http://vuejs.org/
    javascript
  • Reading local files in JavaScript - HTML5 Rocks
    permalink -
    - http://www.html5rocks.com/en/tutorials/file/dndfiles/
    fileAPI javascript
  • Programmation orientée objet en PHP 5
    Kristen Le Liboux propose un aperçu bien fichu de la POO en PHP avec code pour appuyer le tout dispo sur github.
    NB : d'autres prez sur Javascript  (http://fr.slideshare.net/KristenLeLiboux/notions-javascript)
    et sur MVC en php (http://fr.slideshare.net/KristenLeLiboux/application-mvc)
    idem avec code d'exemple sur github
    permalink -
    - http://fr.slideshare.net/KristenLeLiboux/programmation-oriente-objet-en-php
    cours javascript mvc php
  • JavaScript Guide - JavaScript | MDN
    permalink -
    - https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide
    javascript
  • Comparison of JavaScript frameworks - Wikipedia, the free encyclopedia
    permalink -
    - http://en.wikipedia.org/wiki/Comparison_of_JavaScript_frameworks
    javascript
  • DocHub | Instant Documentation Search
    via https://www.ecirtam.net/links/?M0B0hg
    permalink -
    - http://dochub.io/#css/
    css dom html javascript jquery php python
  • Hiding elements and CSS animations | Rhumaric, pixel distiller
    permalink -
    - http://rhumaric.com/2013/12/hiding-elements-and-css-animations/
    css javascript
  • Javascript Tutorial - innerHTML
    permalink -
    - http://www.tizag.com/javascriptT/javascript-innerHTML.php
    cours javascript
  • Using an html button to call a javascript function - Stack Overflow
    There are a few ways to handle events with HTML/DOM. There's no real right or wrong way but different ways are useful in different situations.

    1: There's defining it in the HTML:

    <input id="clickMe" type="button" value="clickme" onclick="doFunction();" />

    2: There's adding it to the DOM property for the event in Javascript:

    //- Using a function pointer:
    document.getElementById("clickMe").onclick = doFunction;

    //- Using and anonymous function:
    document.getElementById("clickMe").onclick = function () { alert('hello!'); };

    3: And there's attaching a function to the event handler using Javascript:

    var el = document.getElementById("clickMe");
    if (el.addEventListener)
       el.addEventListener("click", doFunction, false);
    else if (el.attachEvent)
       el.attachEvent('onclick', doFunction);

    Both the second and third methods allow for inline/anonymous functions and both must be declared after the element has been parsed from the document. The first method isn't valid XHTML because the onclick attribute isn't in the XHTML specification.

    The 1st and 2nd methods are mutually exclusive, meaning using one (the 2nd) will override the other (the 1st). The 3rd method will allow you to attach as many functions as you like to the same event handler, even if the 1st or 2nd method has been used too.
    permalink -
    - http://stackoverflow.com/questions/1947263/using-an-html-button-to-call-a-javascript-function
    javascript
  • Fonctions -- JavaScript Éloquent
    permalink -
    - http://fr.eloquentjavascript.net/chapter3.html
    cours javascript
  • JSLint Error Explanations - Don't make functions within a loop
    permalink -
    - http://jslinterrors.com/dont-make-functions-within-a-loop/
    javascript
  • Learning JavaScript Design Patterns
    permalink -
    - http://addyosmani.com/resources/essentialjsdesignpatterns/book/
    javascript
  • Closures: Front to Back | Nettuts+
    un bon point sur les closures en javascript.
    permalink -
    - http://net.tutsplus.com/tutorials/javascript-ajax/closures-front-to-back/
    javascript
  • Ben Alman » Immediately-Invoked Function Expression (IIFE)
    permalink -
    - http://benalman.com/news/2010/11/immediately-invoked-function-expression/
    javascript
  • Ditching jQuery for Vanilla JS | Go Make Things
    permalink -
    - http://gomakethings.com/ditching-jquery-for-vanilla-js/
    javascript
Links per page: 20 50 100
◄Older
page 4 / 6
Newer►
Shaarli 0.0.41 beta - The personal, minimalist, super-fast, no-database delicious clone. By sebsauvage.net. Theme by idleman.fr.