1234567891011121314151617 |
- $(function () {
- $(".Js_closeBtn").click(function () {
- $(".adduser,.f_delete").fadeOut(200);
- });
- $(".Js_edit").click(function () {
- $(".adduser").fadeIn(200);
- });
- $(".Js_delete").click(function () {
- $(".f_delete").fadeIn(200);
- });
- $(".f_pormatBtn2").click(function () {
- $(".adduser,.f_delete").fadeOut(200);
- });
- $(".Js_closeBtn").on('click',function () {
- window.location.href="DeleteServlet?NEWSID="+this.id;
- });
- });
|