Advertisement
Guest User

Untitled

a guest
Mar 27th, 2015
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. // inlined jquery here, /*! jQuery v1.11.2 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/license */
  3.  
  4. // ...
  5.  
  6. $(document).ready(function(){
  7.  
  8.     $('.brainbox').each(function(i){
  9.  
  10.         // this works fine
  11.         $(this).addClass('item-' + i);
  12.  
  13.         // logs ok
  14.         console.log( i + ' is here');
  15.  
  16.         // Uncaught TypeError: Object [object Object] has no method 'getAttribute'
  17.         console.log(  $(this).getAttribute('data-key') );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement