I need to generate 'div' dynamically without the help of ng-repeat and also different data in the scope.
<div attribute={{atrb}}>{{name}}</div> (<- dynamic div).
Controller
$scope.GenerateDiv = function()
{
$scope.name = "praveen";
$scope.atrb = "01";
}