I am using iframe with angularjs route. The url which I am providing to iframe is an angular route.
$scope.url = $sce.trustAsResourceUrl('http://localhost:3000/#/abc/param1/param2')
Here is the iframe.
<iframe ng-src="{{url}}" frameborder="0"></iframe>
It is working fine in Chrome but it doesn't show in IE or firefox. I tried providing url as '/#/abc/param1/param2' but it doesn't work either.