Javascript examples for jQuery:Array
Turn data-attribute array into object
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <script type="text/javascript" src="https://code.jquery.com/jquery-1.11.0.js"></script> <script type="text/javascript"> $(window).load(function(){/* ww w. ja v a 2s . co m*/ console.log( $('#test').data('options') ) }); </script> </head> <body> <div id="test" data-options="{"multiExpand":true,"otherOption":false}"></div> </body> </html>