D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
flying-sheep
Full window
Github gist
script insertion and stack traces. jQuery’s magic is bad for debugging
<!doctype html> <head> <meta charset=utf-8> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> const script = src => { const node = document.createElement('script') node.src = src return node } $(() => { $('head').append(script('test-jquery.js')) document.head.appendChild(script('test-native.js')) }) </script> </head> <body> jQuery: <pre id=jquery></pre> native: <pre id=native></pre> </body>
https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js