How to open modal pop up in angularjs?

I have an existing html page with bootstrap 3 snippet for opening modal popup below

link to open modal pop up

<a href="#" class="fa fa-search FA_Ico mT5" aria-hidden="true" title="SearchOrg" data-toggle="modal" data-target="#SearchAccountModal"></a>

modal pop up

<div class="modal fade modal-xl" id="SearchAccountModal" tabindex="-1" role="dialog">
	//additional code 
</div>

when I click link , modal pop up opens fine…no problem.

Now my question is : What would be the angularjs way to open the same modal pop up ?

I’m using angularjs 1.3

You’ll find that AngularJS is used to refer to version 1, and Angular refers to version 2.

Here’s an AngularJS modal tutorial.

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.