Hi Harsha,
Remove JQuery from your project (for now)... You are still thinking of this the jquery way instead of the angular way.
The one rule you will have to get is to never ever use JQuery( aka dom manipulation ! ) in your controllers. NEVER.
Here is how you should think about it alternately.
For example switching between individual and company should be done using an ng-show or ng-switch. Read about them.
Set a single model with both the individual and company radio's so that they both edit the value of the same model.
Now you can start switching / showing the form below based on this model.
Something like
<input type="radio" ng-model="businessType" value="individual">
<input type="radio" ng-model="businessType" value="company">
Now both these radio's push to the same model.
Later on in the form
<!-- this is for individual-->
<div ng-show="businessType=='individual'>
</div>
<!-- this is for company-->
<div ng-hide="businessType=='individual'>
</div>
Hope this gives you a good starting point.
PS : Dont take my html for granted. It might have some errors as I typed directly into the mail.