This is my code. is it possible to show angular project inside div (.test class) ?. Here http://test.com is local angular project url. Any help would be amazing. Thanks in advance.
<html> <head> <script src= "http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> <script> $(document).ready(function () { $.ajax({ url: 'http://test.com', //Pass URL here type: "GET", //Also use GET method success: function (data) { $('.test').html(data); } }); }); </script> </head> <body> <div> Div of base html</div> <div class="test"></div> </body> </html> -- You received this message because you are subscribed to the Google Groups "Angular and AngularJS discussion" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/angular. For more options, visit https://groups.google.com/d/optout.
