Javascript is ignoring value of textboxHow do JavaScript closures work?What is the most efficient way to deep clone an object in JavaScript?Which “href” value should I use for JavaScript links, “#” or “javascript:void(0)”?How do I remove a property from a JavaScript object?Which equals operator (== vs ===) should be used in JavaScript comparisons?How do I include a JavaScript file in another JavaScript file?What does “use strict” do in JavaScript, and what is the reasoning behind it?How to check whether a string contains a substring in JavaScript?How do I remove a particular element from an array in JavaScript?For-each over an array in JavaScript?
Cycle through MeshStyle directives in ListLinePlot
Impedance ratio vs. SWR
How Often Do Health Insurance Providers Drop Coverage?
Grover algorithm for a database search: where is the quantum advantage?
Does Disney no longer produce hand-drawn cartoon films?
Is it a problem if <h4>, <h5> and <h6> are smaller than regular text?
What do abbreviations in movie scripts stand for?
How can I get an unreasonable manager to approve time off?
Should an arbiter claim draw at a K+R vs K+R endgame?
SQL counting distinct over partition
When conversion from Integer to Single may lose precision
How can I tell the difference between unmarked sugar and stevia?
At what point in time did Dumbledore ask Snape for this favor?
What ways have you found to get edits from non-LaTeX users?
Winning Strategy for the Magician and his Apprentice
Passing multiple files through stdin (over ssh)
What is wrong with this proof that symmetric matrices commute?
What is the fastest method to figure out which keys contain certain notes?
Pre-1972 sci-fi short story or novel: alien(?) tunnel where people try new moves and get destroyed if they're not the correct ones
What makes an item an artifact?
What makes Ada the language of choice for the ISS's safety-critical systems?
Preventing employees from either switching to competitors or opening their own business
Is the term 'open source' a trademark?
Universal hash functions with homomorphic XOR property
Javascript is ignoring value of textbox
How do JavaScript closures work?What is the most efficient way to deep clone an object in JavaScript?Which “href” value should I use for JavaScript links, “#” or “javascript:void(0)”?How do I remove a property from a JavaScript object?Which equals operator (== vs ===) should be used in JavaScript comparisons?How do I include a JavaScript file in another JavaScript file?What does “use strict” do in JavaScript, and what is the reasoning behind it?How to check whether a string contains a substring in JavaScript?How do I remove a particular element from an array in JavaScript?For-each over an array in JavaScript?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I have some issues with a calculation in Javascript.
I an filling a textbox with a value:
<script>
function getTi()
$('#total_item').val('<?php echo $m; ?>');
$('#total_item').trigger('change');
</script>
In this case the value of #total_item
= 3.
In the second part of my script a want to get the value of the textbox and add a + 1
to it:
<script>
$(document).ready(function()
var count = $('#total_item').val();
$(document).on('click', '#add_row', function()
count++;
$('#total_item').val(count);
// more code
;
;
</script>
When I execute my script the script overwrites 3
with 1
and adds +1
everytime then I click on #add_row.
I think there is something wrong with var count = $('#total_item').val();
. The script works when I change var count = $('#total_item').val();
to var count = 3
.
Does someone know why my script is not working properly?
javascript
|
show 1 more comment
I have some issues with a calculation in Javascript.
I an filling a textbox with a value:
<script>
function getTi()
$('#total_item').val('<?php echo $m; ?>');
$('#total_item').trigger('change');
</script>
In this case the value of #total_item
= 3.
In the second part of my script a want to get the value of the textbox and add a + 1
to it:
<script>
$(document).ready(function()
var count = $('#total_item').val();
$(document).on('click', '#add_row', function()
count++;
$('#total_item').val(count);
// more code
;
;
</script>
When I execute my script the script overwrites 3
with 1
and adds +1
everytime then I click on #add_row.
I think there is something wrong with var count = $('#total_item').val();
. The script works when I change var count = $('#total_item').val();
to var count = 3
.
Does someone know why my script is not working properly?
javascript
2
It seems like the second script is executed before the first one.
– VLAZ
Mar 24 at 17:22
2
val
returns a string. Convert it to a number.
– p.s.w.g
Mar 24 at 17:23
Get the current value once click event occurs, not before. Also we have no idea wheregetTi()
gets called or when. Provide a minimal reproducible example
– charlietfl
Mar 24 at 17:24
I assume your add_row function adds a row of some kind to a container of some kind. Why not count the number of existing rows usingdocument.querySelectorAll('#container .your-row').length
or similar.
– James
Mar 24 at 17:28
Click edit then[<>]
snippet editor and provide relevant HTML and JS in a minimal reproducible example
– mplungjan
Mar 24 at 17:35
|
show 1 more comment
I have some issues with a calculation in Javascript.
I an filling a textbox with a value:
<script>
function getTi()
$('#total_item').val('<?php echo $m; ?>');
$('#total_item').trigger('change');
</script>
In this case the value of #total_item
= 3.
In the second part of my script a want to get the value of the textbox and add a + 1
to it:
<script>
$(document).ready(function()
var count = $('#total_item').val();
$(document).on('click', '#add_row', function()
count++;
$('#total_item').val(count);
// more code
;
;
</script>
When I execute my script the script overwrites 3
with 1
and adds +1
everytime then I click on #add_row.
I think there is something wrong with var count = $('#total_item').val();
. The script works when I change var count = $('#total_item').val();
to var count = 3
.
Does someone know why my script is not working properly?
javascript
I have some issues with a calculation in Javascript.
I an filling a textbox with a value:
<script>
function getTi()
$('#total_item').val('<?php echo $m; ?>');
$('#total_item').trigger('change');
</script>
In this case the value of #total_item
= 3.
In the second part of my script a want to get the value of the textbox and add a + 1
to it:
<script>
$(document).ready(function()
var count = $('#total_item').val();
$(document).on('click', '#add_row', function()
count++;
$('#total_item').val(count);
// more code
;
;
</script>
When I execute my script the script overwrites 3
with 1
and adds +1
everytime then I click on #add_row.
I think there is something wrong with var count = $('#total_item').val();
. The script works when I change var count = $('#total_item').val();
to var count = 3
.
Does someone know why my script is not working properly?
javascript
javascript
asked Mar 24 at 17:20
JohnJohn
1142925
1142925
2
It seems like the second script is executed before the first one.
– VLAZ
Mar 24 at 17:22
2
val
returns a string. Convert it to a number.
– p.s.w.g
Mar 24 at 17:23
Get the current value once click event occurs, not before. Also we have no idea wheregetTi()
gets called or when. Provide a minimal reproducible example
– charlietfl
Mar 24 at 17:24
I assume your add_row function adds a row of some kind to a container of some kind. Why not count the number of existing rows usingdocument.querySelectorAll('#container .your-row').length
or similar.
– James
Mar 24 at 17:28
Click edit then[<>]
snippet editor and provide relevant HTML and JS in a minimal reproducible example
– mplungjan
Mar 24 at 17:35
|
show 1 more comment
2
It seems like the second script is executed before the first one.
– VLAZ
Mar 24 at 17:22
2
val
returns a string. Convert it to a number.
– p.s.w.g
Mar 24 at 17:23
Get the current value once click event occurs, not before. Also we have no idea wheregetTi()
gets called or when. Provide a minimal reproducible example
– charlietfl
Mar 24 at 17:24
I assume your add_row function adds a row of some kind to a container of some kind. Why not count the number of existing rows usingdocument.querySelectorAll('#container .your-row').length
or similar.
– James
Mar 24 at 17:28
Click edit then[<>]
snippet editor and provide relevant HTML and JS in a minimal reproducible example
– mplungjan
Mar 24 at 17:35
2
2
It seems like the second script is executed before the first one.
– VLAZ
Mar 24 at 17:22
It seems like the second script is executed before the first one.
– VLAZ
Mar 24 at 17:22
2
2
val
returns a string. Convert it to a number.– p.s.w.g
Mar 24 at 17:23
val
returns a string. Convert it to a number.– p.s.w.g
Mar 24 at 17:23
Get the current value once click event occurs, not before. Also we have no idea where
getTi()
gets called or when. Provide a minimal reproducible example– charlietfl
Mar 24 at 17:24
Get the current value once click event occurs, not before. Also we have no idea where
getTi()
gets called or when. Provide a minimal reproducible example– charlietfl
Mar 24 at 17:24
I assume your add_row function adds a row of some kind to a container of some kind. Why not count the number of existing rows using
document.querySelectorAll('#container .your-row').length
or similar.– James
Mar 24 at 17:28
I assume your add_row function adds a row of some kind to a container of some kind. Why not count the number of existing rows using
document.querySelectorAll('#container .your-row').length
or similar.– James
Mar 24 at 17:28
Click edit then
[<>]
snippet editor and provide relevant HTML and JS in a minimal reproducible example– mplungjan
Mar 24 at 17:35
Click edit then
[<>]
snippet editor and provide relevant HTML and JS in a minimal reproducible example– mplungjan
Mar 24 at 17:35
|
show 1 more comment
0
active
oldest
votes
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%2f55326438%2fjavascript-is-ignoring-value-of-textbox%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
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%2f55326438%2fjavascript-is-ignoring-value-of-textbox%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
2
It seems like the second script is executed before the first one.
– VLAZ
Mar 24 at 17:22
2
val
returns a string. Convert it to a number.– p.s.w.g
Mar 24 at 17:23
Get the current value once click event occurs, not before. Also we have no idea where
getTi()
gets called or when. Provide a minimal reproducible example– charlietfl
Mar 24 at 17:24
I assume your add_row function adds a row of some kind to a container of some kind. Why not count the number of existing rows using
document.querySelectorAll('#container .your-row').length
or similar.– James
Mar 24 at 17:28
Click edit then
[<>]
snippet editor and provide relevant HTML and JS in a minimal reproducible example– mplungjan
Mar 24 at 17:35