How can I use two different fade open popup box from same page?

How can I use two different fade open popup box from same page?

AnjalySureshAnjalySuresh Posts: 3Questions: 1Answers: 0

Hello,
I have two datagrids and each row of both tables has edit icon.
On click from each datagrid should display different fields in pop up box.

I am working with MVC.
I tried somethng similar.
$.get("/Admin/Admin/GetEditFuctionalGroupPageMapping", function (htmlResponse) {
debugger;
$("#fade").children().remove();
$("#fade").append("

Edit Functional Page Mapping

");
$("#fade").append(htmlResponse);

        });

But it is not working.
How can I use multiple fade div in same page?
Thanks
Anjaly

Answers

This discussion has been closed.