jQuery Delete Link With Downlevel Support
Posted by: youve been HAACKED,
on 30 Jan 2009 |
View original | Bookmarked: 0 time(s)
Earlier this morning, I posted on making a simple jQuery delete link which makes it easy to create a delete link that does a form post to a delete action. Commenters pointed out that my solution wont work for down-level browsers such as some mobile phones, and they were right. I wasnt really concerned about down-level browsers. One solution for down-level browsers is to render a proper form with a submit button, and then hide the form with JavaScript. Of course this takes a bit more work. Heres...