Afficher/masquer le menu
Liens Ecyseo
  • Tags cloud
  • Daily
  • Pictures wall
  • Search
  • Display options
    • Links per page :
    • 20 links
    • 50 links
    • 100 links
  • RSS Feed
  • Login

J'ai besoin d'intimité. Non pas parce que mes actions sont douteuses, mais parce que votre jugement et vos intentions le sont.

5166 links 

page 2 / 14

Liste des liens

263 results tagged javascript x
Google Tag Manager, la nouvelle arme anti adblock | Pixel de tracking
2020-11-16 14:47 - permalink -

Va falloir naviguer sans js, sans css et sans html... euh, wait !?

google internet javascript tracker vie-privée
- https://www.pixeldetracking.com/fr/google-tag-manager-server-side-tagging
Réalisez des présentations en quelques minutes avec Wanaprez ! - Wanadev
2020-08-18 13:12 - permalink -

Pour réaliser des présentations simples mais propres en markdown.

html javascript libreoffice powerpoint présentation
- https://www.wanadev.fr/214-realisez-des-presentations-en-quelques-minutes-avec-wanaprez/
Offline MDN Docs - Kapeli
2020-07-6 13:6 - permalink -

Intéressant car souvent Zeal plante avec les docs MDN

css documentation html javascript svg tutoriels xslt
- https://kapeli.com/mdn_offline
PHONK - Self-contained Creative scripting toolbox for new and old Android devices
2020-07-3 8:37 - permalink -

Self-contained Creative scripting toolbox for new and old Android devices

android developpement javascript logiciel outils
- https://phonk.app/
A re-introduction to JavaScript (JS tutorial) - JavaScript | MDN
2020-07-2 15:6 - permalink -

Un tutoriel de Mozilla

javascript tutoriels
- https://developer.mozilla.org/en-US/docs/Web/JavaScript/A_re-introduction_to_JavaScript
Robust Client-Side JavaScript – A Developer’s Guide · molily
2020-06-24 20:5 - permalink -

Why do we need to talk about robust JavaScript and how do we achieve it?

ebook javascript tutoriels
- https://molily.de/robust-javascript/
Luc Didry / calendrier javascript · GitLab
2020-04-29 18:26 - permalink -

Un calendrier en javascript.

calendriers javascript outils
- https://framagit.org/luc/calendrier-javascript
Cinnamon Javascript Reference Manual: Cinnamon Javascript Reference Manual
2020-04-16 23:45 - permalink -
applet cinnamon javascript Linux
- http://lira.epac.to:8080/doc/cinnamon/cinnamon-js/
Document.designMode - Web APIs | MDN
2019-12-19 6:14 - permalink -

document.designMode controls whether the entire document is editable. Valid values are "on" and "off". According to the specification, this property is meant to default to "off". Firefox follows this standard. The earlier versions of Chrome and IE default to "inherit". Starting in Chrome 43, the default is "off" and "inherit" is no longer supported. In IE6-10, the value is capitalized.

javascript tutoriels webdev
- https://developer.mozilla.org/en-US/docs/Web/API/Document/designMode
Ajouter un retour à la ligne dans une pop-up `alert` ou `confirm` générée en js
2019-12-12 12:25 - permalink -

Il faut ajouter \u000A.

C'est tout con, mais j'oublie tout le temps...

javascript pop-up
- https://bookmarks.ecyseo.net/?quFqog
Paged.js – Paged Media
2019-11-19 23:45 - permalink -

Outil pour imprimer des pages HTML.

css html impression javascript outils page
- https://www.pagedmedia.org/paged-js/
OnCOGITE | Les Ateliers qui reconnectent les Neurones !
2019-11-6 12:31 - permalink -

Bien que le fond de ce site soit plutôt bien, la forme est à chier : un script tout moisi "empêche" la consultation du code html.
Ce script, plus quelques lignes de css, le voici :

<script id="wpcp_disable_selection" type="text/javascript">
//<![CDATA[
var image_save_msg='You Can Not Save images!';
    var no_menu_msg='Context Menu disabled!';
    var smessage = "Content is protected !!";

function disableEnterKey(e)
{
    if (e.ctrlKey){
     var key;
     if(window.event)
          key = window.event.keyCode;     //IE
     else
          key = e.which;     //firefox (97)
    //if (key != 17) alert(key);
     if (key == 97 || key == 65 || key == 67 || key == 99 || key == 88 || key == 120 || key == 26 || key == 85  || key == 86 || key == 83 || key == 43)
     {
          show_wpcp_message('You are not allowed to copy content or view source');
          return false;
     }else
        return true;
     }
}

function disable_copy(e)
{   
    var elemtype = e.target.nodeName;
    var isSafari = /Safari/.test(navigator.userAgent) && /Apple Computer/.test(navigator.vendor);
    elemtype = elemtype.toUpperCase();
    var checker_IMG = '';
    if (elemtype == "IMG" && checker_IMG == 'checked' && e.detail >= 2) {show_wpcp_message(alertMsg_IMG);return false;}
    if (elemtype != "TEXT" && elemtype != "TEXTAREA" && elemtype != "INPUT" && elemtype != "PASSWORD" && elemtype != "SELECT" && elemtype != "OPTION" && elemtype != "EMBED")
    {
        if (smessage !== "" && e.detail == 2)
            show_wpcp_message(smessage);

        if (isSafari)
            return true;
        else
            return false;
    }   
}
function disable_copy_ie()
{
    var elemtype = window.event.srcElement.nodeName;
    elemtype = elemtype.toUpperCase();
    if (elemtype == "IMG") {show_wpcp_message(alertMsg_IMG);return false;}
    if (elemtype != "TEXT" && elemtype != "TEXTAREA" && elemtype != "INPUT" && elemtype != "PASSWORD" && elemtype != "SELECT" && elemtype != "OPTION" && elemtype != "EMBED")
    {
        //alert(navigator.userAgent.indexOf('MSIE'));
            //if (smessage !== "") show_wpcp_message(smessage);
        return false;
    }
}   
function reEnable()
{
    return true;
}
document.onkeydown = disableEnterKey;
document.onselectstart = disable_copy_ie;
if(navigator.userAgent.indexOf('MSIE')==-1)
{
    document.onmousedown = disable_copy;
    document.onclick = reEnable;
}
function disableSelection(target)
{
    //For IE This code will work
    if (typeof target.onselectstart!="undefined")
    target.onselectstart = disable_copy_ie;

    //For Firefox This code will work
    else if (typeof target.style.MozUserSelect!="undefined")
    {target.style.MozUserSelect="none";}

    //All other  (ie: Opera) This code will work
    else
    target.onmousedown=function(){return false}
    target.style.cursor = "default";
}
//Calling the JS function directly just after body load
window.onload = function(){disableSelection(document.body);};
//]]>
</script>
    <script id="wpcp_disable_Right_Click" type="text/javascript">
    //<![CDATA[
    document.ondragstart = function() { return false;}
    /* ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    Disable context menu on images by GreenLava Version 1.0
    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ */
        function nocontext(e) {
           return false;
        }
        document.oncontextmenu = nocontext;
    //]]>
    </script>
<style>
.unselectable
{
-moz-user-select:none;
-webkit-user-select:none;
cursor: default;
}
html
{
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-tap-highlight-color: rgba(0,0,0,0);
}
</style>
<script id="wpcp_css_disable_selection" type="text/javascript">
var e = document.getElementsByTagName('body')[0];
if(e)
{
    e.setAttribute('unselectable',on);
}
</script>

Et l'agence web le place sur tous les sites qu'elle conçoit.
C'est totalement inefficace (car facilement contournable) et je ne vois pas l'intérêt du truc. Ils facturent cette merde combien à leurs clients ?

css développement html javascript tout-moisi
- https://oncogite.com/#ateliers
Les promesses en Javascript | Blog Eleven Labs
2019-10-11 10:19 - permalink -

via Bronco

javascript tutoriels
- https://blog.eleven-labs.com/fr/lespromessesenjavascript/
Code Heroes - Deviens un vrai héros du code
2019-09-13 1:37 - permalink -

Bien ce site !
Via l'ami Bronco

API javascript nodejs poo tutoriels web
- https://www.codeheroes.fr/
downsize-image
2019-07-27 19:49 - permalink -

A very usefull function in js for downsizing images client side. You can accept big images without fear, this will downsize them before you send them to your server.

The interesting bit of code is in dowsize-image.js, the rest is just for testing. It was tested with 35MB images on chrome, firefox and edge desktop. It was also tested with chrome, firefox and safari on mobile.

image javascript
- https://github.com/nrobinaubertin/js-stuff/tree/master/downsize-image
En faire plus avec la Console Javascript - Il n'y a pas que le console.log() !
2019-06-18 14:14 - permalink -
console.table()
console.group()
console.count()
console.assert()
console.dir()
console.trace()
console.clear()
console javascript
- https://constantin-boulanger.fr/en-faire-plus-avec-la-console-javascript-console-log/
Un chercheur trouve une méthode CSS pour suivre les mouvements de la souris, qui pourrait servir pister les internautes avec JS dsactiv - Le Hollandais Volant
2019-05-12 0:10 - permalink -

Il va falloir désactiver le css aussi alors ???

css javascript sécurité
- https://lehollandaisvolant.net/?mode=links&id=20190510210234
Build a Decentralized Web Chat in 15 Minutes
2019-04-19 14:28 - permalink -

Toujours via Bronco. À lire plus tard.

chat javascript peertopeer
- https://davidwalsh.name/build-a-decentralized-web-chat-in-15-minutes
Animating URLs with Javascript and Emojis
2019-04-17 15:7 - permalink -

Tout est dans le titre

animation emoji javascript unicode url
- http://matthewrayfield.com/articles/animating-urls-with-javascript-and-emojis/#%F0%9F%8C%91%F0%9F%8C%91%F0%9F%8C%91%F0%9F%8C%91%F0%9F%8C%91%F0%9F%8C%91%F0%9F%8C%91%F0%9F%8C%91%F0%9F%8C%92%F0%9F%8C%95
Unicode in JavaScript
2019-04-17 14:57 - permalink -
javascript unicode
- https://flaviocopes.com/javascript-unicode/
page 2 / 14


Tags


  • shaarli
  • wikipedia

Tags cloud

Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation
Affiches "loi aviva" créées par Geoffrey Dorne le 13 Mai, 2020 - Mastodon 1 - Mastodon 2