Event triggered on any modification on my form Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Data science time! April 2019 and salary with experience The Ask Question Wizard is Live!How to get input type using jquery?How do you disable browser Autocomplete on web form field / input tag?Event binding on dynamically created elements?How can I disable a button in a jQuery dialog from a function?I need an unordered list without any bulletsConvert form data to JavaScript object with jQueryHow to ensure a <select> form field is submitted when it is disabled?jQuery disable/enable submit buttonjQuery multiple events to trigger the same functionPrevent double submission of forms in jQueryjQuery's jquery-1.10.2.min.map is triggering a 404 (Not Found)
How to translate "red flag" into Spanish?
Is a self contained air-bullet cartridge feasible?
Suing a Police Officer Instead of the Police Department
Calculating the expected value of truncated normal
Is there an efficient way for synchronising audio events real-time with LEDs using an MCU?
Cisco DHCP Router
Has a Nobel Peace laureate ever been accused of war crimes?
Writing a T-SQL stored procedure to receive 4 numbers and insert them into a table
Coin Game with infinite paradox
Why is water being consumed when my shutoff valve is closed?
Is it OK if I do not take the receipt in Germany?
What's the difference between using dependency injection with a container and using a service locator?
What is a 'Key' in computer science?
What is ls Largest Number Formed by only moving two sticks in 508?
Why doesn't the university give past final exams' answers?
Is Bran literally the world's memory?
The 'gros' functor from schemes into (strictly) locally ringed topoi
What were wait-states, and why was it only an issue for PCs?
Can gravitational waves pass through a black hole?
Does using the Inspiration rules for character defects encourage My Guy Syndrome?
Translate text contents of an existing file from lower to upper case and copy to a new file
What does the black goddess statue do and what is it?
/bin/ls sorts differently than just ls
How long can a nation maintain a technological edge over the rest of the world?
Event triggered on any modification on my form
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)
Data science time! April 2019 and salary with experience
The Ask Question Wizard is Live!How to get input type using jquery?How do you disable browser Autocomplete on web form field / input tag?Event binding on dynamically created elements?How can I disable a button in a jQuery dialog from a function?I need an unordered list without any bulletsConvert form data to JavaScript object with jQueryHow to ensure a <select> form field is submitted when it is disabled?jQuery disable/enable submit buttonjQuery multiple events to trigger the same functionPrevent double submission of forms in jQueryjQuery's jquery-1.10.2.min.map is triggering a 404 (Not Found)
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I made a form with an imput text and a select.
To submit the form i want the user to click a verify button in order to check if all fields are correctly filed.
If it is then the button submit who was initialy disabled is now enable.
Here is the problem, i'd like that if the user modify anything in the form again then the button turn back to disable so that he must verify again to submit.
To do so i'd like to find a jQuery event that triggers on any event on my form to turn back the submit button to disable again.
Any idea of how could i do ?
javascript jquery html
add a comment |
I made a form with an imput text and a select.
To submit the form i want the user to click a verify button in order to check if all fields are correctly filed.
If it is then the button submit who was initialy disabled is now enable.
Here is the problem, i'd like that if the user modify anything in the form again then the button turn back to disable so that he must verify again to submit.
To do so i'd like to find a jQuery event that triggers on any event on my form to turn back the submit button to disable again.
Any idea of how could i do ?
javascript jquery html
1
Jquery has a chaange event you can add to a form that will bubble up events form the inputs $('#formId').change(function()...); Also, this functionality is generally done with one button. Cancel the form submit and submit through javascript if validation passes
– DavidB
Mar 22 at 15:01
Oh thanks i didn't know about that event !
– Xilamax
Mar 22 at 15:09
add a comment |
I made a form with an imput text and a select.
To submit the form i want the user to click a verify button in order to check if all fields are correctly filed.
If it is then the button submit who was initialy disabled is now enable.
Here is the problem, i'd like that if the user modify anything in the form again then the button turn back to disable so that he must verify again to submit.
To do so i'd like to find a jQuery event that triggers on any event on my form to turn back the submit button to disable again.
Any idea of how could i do ?
javascript jquery html
I made a form with an imput text and a select.
To submit the form i want the user to click a verify button in order to check if all fields are correctly filed.
If it is then the button submit who was initialy disabled is now enable.
Here is the problem, i'd like that if the user modify anything in the form again then the button turn back to disable so that he must verify again to submit.
To do so i'd like to find a jQuery event that triggers on any event on my form to turn back the submit button to disable again.
Any idea of how could i do ?
javascript jquery html
javascript jquery html
asked Mar 22 at 14:59
XilamaxXilamax
265
265
1
Jquery has a chaange event you can add to a form that will bubble up events form the inputs $('#formId').change(function()...); Also, this functionality is generally done with one button. Cancel the form submit and submit through javascript if validation passes
– DavidB
Mar 22 at 15:01
Oh thanks i didn't know about that event !
– Xilamax
Mar 22 at 15:09
add a comment |
1
Jquery has a chaange event you can add to a form that will bubble up events form the inputs $('#formId').change(function()...); Also, this functionality is generally done with one button. Cancel the form submit and submit through javascript if validation passes
– DavidB
Mar 22 at 15:01
Oh thanks i didn't know about that event !
– Xilamax
Mar 22 at 15:09
1
1
Jquery has a chaange event you can add to a form that will bubble up events form the inputs $('#formId').change(function()...); Also, this functionality is generally done with one button. Cancel the form submit and submit through javascript if validation passes
– DavidB
Mar 22 at 15:01
Jquery has a chaange event you can add to a form that will bubble up events form the inputs $('#formId').change(function()...); Also, this functionality is generally done with one button. Cancel the form submit and submit through javascript if validation passes
– DavidB
Mar 22 at 15:01
Oh thanks i didn't know about that event !
– Xilamax
Mar 22 at 15:09
Oh thanks i didn't know about that event !
– Xilamax
Mar 22 at 15:09
add a comment |
2 Answers
2
active
oldest
votes
You need to trigger the event with the on Change function of jQuery. You have to assign it to every input field / Select or whatever, or give them all the same class.
Here is a Doc
Example:
<form>
<input class="target" type="text" value="Field 1">
<select class="target">
<option value="option1" selected="selected">Option 1</option>
<option value="option2">Option 2</option>
</select>
</form>
<div id="other">
Trigger the handler
</div>
Script:
$( ".target" ).change(function()
alert( "Handler for .change() called." );
);
If you provide any sample Code, we'd be able to help you even more.
Thanks i didn't know that the change event could be applyied to a form ! It works !
– Xilamax
Mar 22 at 15:11
glad to hear that
– SteelNation
Mar 22 at 15:12
add a comment |
You can use the form (delegateTarget) then from that select the input types (https://stackoverflow.com/a/3165569/125981) that you wish to be in scope to attach event hanlders, and disable those desired by there type. Since it IS possible to have multiple I have included and example with two submit buttons that are and a reset button that is NOT disabled. To reverse that, you would need to have some way to clear them out so I added an example of a custom event.
Added a reset event handler since it may come into play here.
$('#myform').on('change keyup', 'input[type="text"], select', function(event)
$(event.delegateTarget).find('input[type="submit"]').each(function()
console.log("disable:", this);
this.disabled = true;
);
)
.on('all-clear', function(event)
$(event.delegateTarget).find('input[type="submit"]').each(function()
this.disabled = false;
);
)
.on('click', '#allclear', function(event)
$(event.delegateTarget).trigger('all-clear');
)
.on('reset', function(event)
// do whatever is desired on the reset of the form
);
.find('input[type="text"]').trigger('change'); //IF you want disabled initially<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<form id="myform">
<input type="text" value="text stuff" />
<select>
<option value="option1" selected="selected">First Option</option>
<option value="option2">Another Option</option>
</select>
<input type="submit" value="Submit" />
<input type="submit" value="Possible Submit" />
<input type="reset" value="Reset" />
<button id="allclear" type="button">All clear</button>
</form>
This is really better answer than the accepted one. Only one event listener is used here.
– A. Wolff
Mar 22 at 16:01
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55302438%2fevent-triggered-on-any-modification-on-my-form%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
You need to trigger the event with the on Change function of jQuery. You have to assign it to every input field / Select or whatever, or give them all the same class.
Here is a Doc
Example:
<form>
<input class="target" type="text" value="Field 1">
<select class="target">
<option value="option1" selected="selected">Option 1</option>
<option value="option2">Option 2</option>
</select>
</form>
<div id="other">
Trigger the handler
</div>
Script:
$( ".target" ).change(function()
alert( "Handler for .change() called." );
);
If you provide any sample Code, we'd be able to help you even more.
Thanks i didn't know that the change event could be applyied to a form ! It works !
– Xilamax
Mar 22 at 15:11
glad to hear that
– SteelNation
Mar 22 at 15:12
add a comment |
You need to trigger the event with the on Change function of jQuery. You have to assign it to every input field / Select or whatever, or give them all the same class.
Here is a Doc
Example:
<form>
<input class="target" type="text" value="Field 1">
<select class="target">
<option value="option1" selected="selected">Option 1</option>
<option value="option2">Option 2</option>
</select>
</form>
<div id="other">
Trigger the handler
</div>
Script:
$( ".target" ).change(function()
alert( "Handler for .change() called." );
);
If you provide any sample Code, we'd be able to help you even more.
Thanks i didn't know that the change event could be applyied to a form ! It works !
– Xilamax
Mar 22 at 15:11
glad to hear that
– SteelNation
Mar 22 at 15:12
add a comment |
You need to trigger the event with the on Change function of jQuery. You have to assign it to every input field / Select or whatever, or give them all the same class.
Here is a Doc
Example:
<form>
<input class="target" type="text" value="Field 1">
<select class="target">
<option value="option1" selected="selected">Option 1</option>
<option value="option2">Option 2</option>
</select>
</form>
<div id="other">
Trigger the handler
</div>
Script:
$( ".target" ).change(function()
alert( "Handler for .change() called." );
);
If you provide any sample Code, we'd be able to help you even more.
You need to trigger the event with the on Change function of jQuery. You have to assign it to every input field / Select or whatever, or give them all the same class.
Here is a Doc
Example:
<form>
<input class="target" type="text" value="Field 1">
<select class="target">
<option value="option1" selected="selected">Option 1</option>
<option value="option2">Option 2</option>
</select>
</form>
<div id="other">
Trigger the handler
</div>
Script:
$( ".target" ).change(function()
alert( "Handler for .change() called." );
);
If you provide any sample Code, we'd be able to help you even more.
answered Mar 22 at 15:06
SteelNationSteelNation
1108
1108
Thanks i didn't know that the change event could be applyied to a form ! It works !
– Xilamax
Mar 22 at 15:11
glad to hear that
– SteelNation
Mar 22 at 15:12
add a comment |
Thanks i didn't know that the change event could be applyied to a form ! It works !
– Xilamax
Mar 22 at 15:11
glad to hear that
– SteelNation
Mar 22 at 15:12
Thanks i didn't know that the change event could be applyied to a form ! It works !
– Xilamax
Mar 22 at 15:11
Thanks i didn't know that the change event could be applyied to a form ! It works !
– Xilamax
Mar 22 at 15:11
glad to hear that
– SteelNation
Mar 22 at 15:12
glad to hear that
– SteelNation
Mar 22 at 15:12
add a comment |
You can use the form (delegateTarget) then from that select the input types (https://stackoverflow.com/a/3165569/125981) that you wish to be in scope to attach event hanlders, and disable those desired by there type. Since it IS possible to have multiple I have included and example with two submit buttons that are and a reset button that is NOT disabled. To reverse that, you would need to have some way to clear them out so I added an example of a custom event.
Added a reset event handler since it may come into play here.
$('#myform').on('change keyup', 'input[type="text"], select', function(event)
$(event.delegateTarget).find('input[type="submit"]').each(function()
console.log("disable:", this);
this.disabled = true;
);
)
.on('all-clear', function(event)
$(event.delegateTarget).find('input[type="submit"]').each(function()
this.disabled = false;
);
)
.on('click', '#allclear', function(event)
$(event.delegateTarget).trigger('all-clear');
)
.on('reset', function(event)
// do whatever is desired on the reset of the form
);
.find('input[type="text"]').trigger('change'); //IF you want disabled initially<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<form id="myform">
<input type="text" value="text stuff" />
<select>
<option value="option1" selected="selected">First Option</option>
<option value="option2">Another Option</option>
</select>
<input type="submit" value="Submit" />
<input type="submit" value="Possible Submit" />
<input type="reset" value="Reset" />
<button id="allclear" type="button">All clear</button>
</form>
This is really better answer than the accepted one. Only one event listener is used here.
– A. Wolff
Mar 22 at 16:01
add a comment |
You can use the form (delegateTarget) then from that select the input types (https://stackoverflow.com/a/3165569/125981) that you wish to be in scope to attach event hanlders, and disable those desired by there type. Since it IS possible to have multiple I have included and example with two submit buttons that are and a reset button that is NOT disabled. To reverse that, you would need to have some way to clear them out so I added an example of a custom event.
Added a reset event handler since it may come into play here.
$('#myform').on('change keyup', 'input[type="text"], select', function(event)
$(event.delegateTarget).find('input[type="submit"]').each(function()
console.log("disable:", this);
this.disabled = true;
);
)
.on('all-clear', function(event)
$(event.delegateTarget).find('input[type="submit"]').each(function()
this.disabled = false;
);
)
.on('click', '#allclear', function(event)
$(event.delegateTarget).trigger('all-clear');
)
.on('reset', function(event)
// do whatever is desired on the reset of the form
);
.find('input[type="text"]').trigger('change'); //IF you want disabled initially<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<form id="myform">
<input type="text" value="text stuff" />
<select>
<option value="option1" selected="selected">First Option</option>
<option value="option2">Another Option</option>
</select>
<input type="submit" value="Submit" />
<input type="submit" value="Possible Submit" />
<input type="reset" value="Reset" />
<button id="allclear" type="button">All clear</button>
</form>
This is really better answer than the accepted one. Only one event listener is used here.
– A. Wolff
Mar 22 at 16:01
add a comment |
You can use the form (delegateTarget) then from that select the input types (https://stackoverflow.com/a/3165569/125981) that you wish to be in scope to attach event hanlders, and disable those desired by there type. Since it IS possible to have multiple I have included and example with two submit buttons that are and a reset button that is NOT disabled. To reverse that, you would need to have some way to clear them out so I added an example of a custom event.
Added a reset event handler since it may come into play here.
$('#myform').on('change keyup', 'input[type="text"], select', function(event)
$(event.delegateTarget).find('input[type="submit"]').each(function()
console.log("disable:", this);
this.disabled = true;
);
)
.on('all-clear', function(event)
$(event.delegateTarget).find('input[type="submit"]').each(function()
this.disabled = false;
);
)
.on('click', '#allclear', function(event)
$(event.delegateTarget).trigger('all-clear');
)
.on('reset', function(event)
// do whatever is desired on the reset of the form
);
.find('input[type="text"]').trigger('change'); //IF you want disabled initially<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<form id="myform">
<input type="text" value="text stuff" />
<select>
<option value="option1" selected="selected">First Option</option>
<option value="option2">Another Option</option>
</select>
<input type="submit" value="Submit" />
<input type="submit" value="Possible Submit" />
<input type="reset" value="Reset" />
<button id="allclear" type="button">All clear</button>
</form>You can use the form (delegateTarget) then from that select the input types (https://stackoverflow.com/a/3165569/125981) that you wish to be in scope to attach event hanlders, and disable those desired by there type. Since it IS possible to have multiple I have included and example with two submit buttons that are and a reset button that is NOT disabled. To reverse that, you would need to have some way to clear them out so I added an example of a custom event.
Added a reset event handler since it may come into play here.
$('#myform').on('change keyup', 'input[type="text"], select', function(event)
$(event.delegateTarget).find('input[type="submit"]').each(function()
console.log("disable:", this);
this.disabled = true;
);
)
.on('all-clear', function(event)
$(event.delegateTarget).find('input[type="submit"]').each(function()
this.disabled = false;
);
)
.on('click', '#allclear', function(event)
$(event.delegateTarget).trigger('all-clear');
)
.on('reset', function(event)
// do whatever is desired on the reset of the form
);
.find('input[type="text"]').trigger('change'); //IF you want disabled initially<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<form id="myform">
<input type="text" value="text stuff" />
<select>
<option value="option1" selected="selected">First Option</option>
<option value="option2">Another Option</option>
</select>
<input type="submit" value="Submit" />
<input type="submit" value="Possible Submit" />
<input type="reset" value="Reset" />
<button id="allclear" type="button">All clear</button>
</form>$('#myform').on('change keyup', 'input[type="text"], select', function(event)
$(event.delegateTarget).find('input[type="submit"]').each(function()
console.log("disable:", this);
this.disabled = true;
);
)
.on('all-clear', function(event)
$(event.delegateTarget).find('input[type="submit"]').each(function()
this.disabled = false;
);
)
.on('click', '#allclear', function(event)
$(event.delegateTarget).trigger('all-clear');
)
.on('reset', function(event)
// do whatever is desired on the reset of the form
);
.find('input[type="text"]').trigger('change'); //IF you want disabled initially<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<form id="myform">
<input type="text" value="text stuff" />
<select>
<option value="option1" selected="selected">First Option</option>
<option value="option2">Another Option</option>
</select>
<input type="submit" value="Submit" />
<input type="submit" value="Possible Submit" />
<input type="reset" value="Reset" />
<button id="allclear" type="button">All clear</button>
</form>$('#myform').on('change keyup', 'input[type="text"], select', function(event)
$(event.delegateTarget).find('input[type="submit"]').each(function()
console.log("disable:", this);
this.disabled = true;
);
)
.on('all-clear', function(event)
$(event.delegateTarget).find('input[type="submit"]').each(function()
this.disabled = false;
);
)
.on('click', '#allclear', function(event)
$(event.delegateTarget).trigger('all-clear');
)
.on('reset', function(event)
// do whatever is desired on the reset of the form
);
.find('input[type="text"]').trigger('change'); //IF you want disabled initially<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<form id="myform">
<input type="text" value="text stuff" />
<select>
<option value="option1" selected="selected">First Option</option>
<option value="option2">Another Option</option>
</select>
<input type="submit" value="Submit" />
<input type="submit" value="Possible Submit" />
<input type="reset" value="Reset" />
<button id="allclear" type="button">All clear</button>
</form>edited Mar 22 at 16:07
answered Mar 22 at 15:54
Mark SchultheissMark Schultheiss
24.6k85484
24.6k85484
This is really better answer than the accepted one. Only one event listener is used here.
– A. Wolff
Mar 22 at 16:01
add a comment |
This is really better answer than the accepted one. Only one event listener is used here.
– A. Wolff
Mar 22 at 16:01
This is really better answer than the accepted one. Only one event listener is used here.
– A. Wolff
Mar 22 at 16:01
This is really better answer than the accepted one. Only one event listener is used here.
– A. Wolff
Mar 22 at 16:01
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55302438%2fevent-triggered-on-any-modification-on-my-form%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
Jquery has a chaange event you can add to a form that will bubble up events form the inputs $('#formId').change(function()...); Also, this functionality is generally done with one button. Cancel the form submit and submit through javascript if validation passes
– DavidB
Mar 22 at 15:01
Oh thanks i didn't know about that event !
– Xilamax
Mar 22 at 15:09