fanatycme Posted April 19, 2015 Share Posted April 19, 2015 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> Link to comment https://forums.phpfreaks.com/topic/295677-restore-removed-classes/ Share on other sites More sharing options...
requinix Posted April 19, 2015 Share Posted April 19, 2015 They're gone. You can't get them back. Consider hiding the elements instead of completely removing them. Link to comment https://forums.phpfreaks.com/topic/295677-restore-removed-classes/#findComment-1509349 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 Link to comment https://forums.phpfreaks.com/topic/295677-restore-removed-classes/#findComment-1509364 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.