Skip to main content
added 85 characters in body
Source Link
Sushanth --
  • 55.6k
  • 9
  • 67
  • 107
 spanEl.dataSet["complexKey"]   

//Using jQuery you can try this

 $('span').data('complex-key')  // Will give you **howtoRead**

//


    $('span').data('id')  // Will give you **anId**
$('span').data('complex-key')  // Will give you **howtoRead**

//

$('span').data('id')  // Will give you **anId**
 spanEl.dataSet["complexKey"]   

//Using jQuery you can try this

 $('span').data('complex-key')  // Will give you **howtoRead**

    $('span').data('id')  // Will give you **anId**
Source Link
Sushanth --
  • 55.6k
  • 9
  • 67
  • 107

$('span').data('complex-key')  // Will give you **howtoRead**

//

$('span').data('id')  // Will give you **anId**