Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="fr" dir="ltr">
- <head>
- <meta charset="utf-8" />
- <title></title>
- </head>
- <body>
- <div class="item" data-creation="2013-05-13">
- <h2 class="item-title">Demo item</h2>
- </div>
- <script>
- (function () {
- 'use strict';
- // Imaginons que les sélecteurs ne sont pas connus lors de leur
- // utilisation (fournis dans les options d'un plugin par ex.)
- var
- title = $('.item-title|text'), // $('.item-title').text();
- creation = $('.item|[data-creation]'); // $('.item').attr('data-creation');
- }());
- </script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment