I have a script tag inside the angular component's template [report.template.html] and it is not being executed upon load.
<script >
$(document).ready(function() {
console.log("calling showHide");
});
</script>
Note: Loaded the jquery lib before angularjs lib as shown in the below plunkr
https://plnkr.co/edit/u8XGlVlY9Q5DmKmPOQwA?p=preview
I know i must be missing something simple. Can someone please help where I am doing it wrong ?