I've ran on small problem with browsers history when the page is modified by javascript.
how to reproduce
- Opened page with the elements wich can be deleted. Then I hit delete button wich triggers javascript with ajax and jquery.remove()
- Then i hit some link to open another page
- On new page i will hit the browsers back button
- I'm on the page with deleted element wich actualy does'nt exists in database.
What is the solution? Clear browser history? (can I?)
Thank you for any advice.
SOLUTION
Thanks to Endy and the source I've come with some solution:
- Create in HTML template an input[type=hidden] with name deleted (whatever)
- Create elements wich can be deleted with unique ID
When is the delete action is triggered, add the unique ID to delete input
var deleted = $("input[name=deleted]"); deleted.val(deleted.val()+id+";");
On document ready create checker wich removes the elements
How it works The browsers automaticaly remembers the values wich are added to the input so when the page is showed from cache it has the value and document ready is triggerred
Code:
var deleted = $("input[name=deleted]");
if (deleted.length > 0 && deleted.val() != "") {
var deletedInput = deleted.val();
var deletedArray = deletedInput.split(";");
for (var i = 0; i < deletedArray.length;i++) {
if (deletedArray[i] != "") {
$("#photo"+deletedArray[i]).remove();
}
}
}
