fanatycme Posted April 19, 2015 Share Posted April 19, 2015 (edited) I have this script (and it's working fine) for destryong some classes. How can i make a button to restore those destroyed classes? /* destroy pagination */ $("a.destroy").click(function(){ $("input.destroy").remove(); $("button.destroy").remove(); $("form.destroy").remove(); $("div.destroy").remove(); $("font.des2").remove(); /* destroy jpages */ $("div.holder").jPages("destroy"); /* remove button */ $(this).remove(); }); <!-- destroy jPages button --> <a class="destroy">Destroy Pagination</a> How can i restore those classes? /* restore pagination */ $("a.rest1").click(function(){ ???????????????????????? }); <!-- restore jPages button --> <a class="rest1">Restore</a> Edited April 19, 2015 by fanatycme Quote Link to comment Share on other sites More sharing options...
Solution requinix Posted April 19, 2015 Solution Share Posted April 19, 2015 They're gone. You can't get them back. Consider hiding the elements instead of completely removing them. Quote Link to comment Share on other sites More sharing options...
fanatycme Posted April 19, 2015 Author Share Posted April 19, 2015 They're gone. You can't get them back. Consider hiding the elements instead of completely removing them. nop you are not good enough:), i made it last night to fix it. Instead of remove i put hide and then at restore button i put show. so...problem 100% fixed by me, ty me close this plz Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.