Tagged Questions
0
votes
1answer
47 views
Reload after upload files in html
I have an html form, which can be used to upload files. These files are deleted when the user navigates away into another section. Unfortunately, I'm not seeing what can be done if the user decides to ...
0
votes
2answers
118 views
call up form submit event if fields are filled
I have a form in sidebar on few pages of my website
<form id="test1" name="test1">
<label for="fname">First Name:</label>
<input type="text" name="fname" id="fname" />
...
1
vote
2answers
163 views
how to access jquery beforeunload-bind form element?
I'm using jQuery to display a message if a form is NOT posted, using this technique:
$(window).bind("beforeunload", function()
{
form = ... // how to access the submitted $("#form")?
// here ...
0
votes
3answers
907 views
Checking for changes in a given form before unload/leave page
I have forms with about 100 input fields each (textbox, textarea, radio, checkbox, file, etc).
When the user leaves the page I need to know if some field has been modified in order to run an autosave ...
3
votes
1answer
628 views
Rails 3 form helper to prevent user from navigating away and losing changes?
Is there a Rails helper or a Rails way of preventing the user from leaving the current page if they're typed something into the form on the current page?
I'm trying to prevent people from losing data ...
1
vote
2answers
545 views
onBeforeUnload and multiple forms
I want to have a feature to submit several forms on a page when the user leaves the page. There is this "do you wanna save?" question and my code so far is like this:
function checkForChanges( ) {
...
3
votes
4answers
989 views
Strategies for preserving form data ( on tab/browser close )
I have an issue with a task management application where occasionally users close their browsers/tabs and the information which they type goes away because they accidentally close a browser/tab, ...