I am having a Angular scope variable streetName.
Simple, non-complicated, jQuery solution:
HTML
Javascript
$(document).ready(function() { var streetName = $('#data').data('street'); });
The $(document).ready... is important to give angular time to set the variables.
$(document).ready...