how can I bind event of one or more arithmatic operation to checkbox?
here is my form in which there are 4 checkboxes for 4 operations.
<form action="" method="POST">
Select no.of questions:<input type="number" name="que" value="que">
<br> <br>
Select no. of series: <select name="select_box">
<option value="0">Please Select</option>
<option value="1"> 2 </option>
<option value="2"> 3 </option>
</select>
<br><br>
Select number type(in digits) <input type="number" name="digits"
value="digits">
<br><br>
Select operations:<br />
<input type="checkbox" id="add" name="operation" value="addition"
id="add"><label>Addition</label>
<br/>
<input type="checkbox" id="sub" name="operation" value="substraction"
id="sub"><label>substraction</label><br/>
<input type="checkbox" id="add" name="operation" value="multiplication"
id="mul"><label>Multiplication</label><br/>
<input type="checkbox" id="add" name="operation" value="division"
id="div"><label>Division</label><br/><br / >
<br><br>
<input type="submit" name="submit" value="Generate"><br>
<br>
</form>
now how can i bind the respective event to respective checkbox (ex.If user click on addition then then only addition will perform) and in case user select 2 checkboxes at a time suppose add and subtract then only those two operation will have to perform ?
here is my php code where I am doing the rest code
<?php
//for 1 digits
if($_POST['digits'] == 1)
$que = $_POST['que'];
for ($x = 1; $x <=$que; $x++)
$rand1 = rand(0,9);
$rand2 = rand(0,9);
$rand3 = rand(0,9);
$operator = array('+', '-','*','/');
$randoperator = $operator[rand(0,3)];
switch ($randoperator)
case "+":
$finalvalue = $rand1 + $rand2 + $rand3;
break;
case "-":
$finalvalue = $rand1 - $rand2 - $rand3;
break;
case "*":
$finalvalue = $rand1 * $rand2 * $rand3;
break;
case "/":
$finalvalue = $rand1 / $rand2 / $rand3;
break;
echo ("This is Q(".$x."):"), $rand1 . $randoperator . $rand2 .
$randoperator . $rand3 . '=' . $finalvalue ,'<br /><br />';
elseif(isset($_POST['digits']) == 2)
$qu = $_POST['que'];
for ($y = 1; $y <=$qu; $y++)
$rand1 = rand(10, 99);
$rand2 = rand(10, 99);
$rand3 = rand(10, 99);
$operator2 = array('+', '-','*','/');
$randoperator2 = $operator2[rand(0, 3)];
switch ($randoperator2)
case "+":
$finalvalue2 = $rand1 + $rand2 + $rand3;
break;
case "-":
$finalvalue2 = $rand1 - $rand2 - $rand3;
break;
case "*":
$finalvalue2 = $rand1 * $rand2 * $rand3;
break;
case "/":
$finalvalue2 = $rand1 / $rand2 / $rand3;
break;
echo ("This is Q(".$y."):"), $rand1 . $randoperator2 . $rand2 .
$randoperator2 . $rand3 . '=' . $finalvalue2 ,'<br /><br />';
elseif(isset($_POST['digits']) == 3)
$q = $_POST['que'];
for ($p = 1; $p <=$q; $p++)
$rand1 = rand(100,999);
$rand2 = rand(100,999);
$rand3 = rand(100,999);
$operator3 = array('+', '-','*','/');
$randoperator3 = $operator3[rand(0,3)];
switch ($randoperator3)
case "+":
$finalvalue3 = $rand1 + $rand2 +$rand3;
break;
case "-":
$finalvalue3 = $rand1 - $rand2 - $rand3;
break;
case "*":
$finalvalue3 = $rand1 * $rand2 * $rand3;
break;
case "/":
$finalvalue3 = $rand1 / $rand2 / $rand3;
break;
echo ("This is Q(".$p."):"), $rand1 . $operator3 . $rand2 . $operator3 .
$rand3 . '=' . $finalvalue3 ,'<br /><br />';
else
//invalid;
?>
I am beginner in php ,how can I do the checkbox event that suggested in the answer for this code ?
javascript php jquery html
add a comment |
here is my form in which there are 4 checkboxes for 4 operations.
<form action="" method="POST">
Select no.of questions:<input type="number" name="que" value="que">
<br> <br>
Select no. of series: <select name="select_box">
<option value="0">Please Select</option>
<option value="1"> 2 </option>
<option value="2"> 3 </option>
</select>
<br><br>
Select number type(in digits) <input type="number" name="digits"
value="digits">
<br><br>
Select operations:<br />
<input type="checkbox" id="add" name="operation" value="addition"
id="add"><label>Addition</label>
<br/>
<input type="checkbox" id="sub" name="operation" value="substraction"
id="sub"><label>substraction</label><br/>
<input type="checkbox" id="add" name="operation" value="multiplication"
id="mul"><label>Multiplication</label><br/>
<input type="checkbox" id="add" name="operation" value="division"
id="div"><label>Division</label><br/><br / >
<br><br>
<input type="submit" name="submit" value="Generate"><br>
<br>
</form>
now how can i bind the respective event to respective checkbox (ex.If user click on addition then then only addition will perform) and in case user select 2 checkboxes at a time suppose add and subtract then only those two operation will have to perform ?
here is my php code where I am doing the rest code
<?php
//for 1 digits
if($_POST['digits'] == 1)
$que = $_POST['que'];
for ($x = 1; $x <=$que; $x++)
$rand1 = rand(0,9);
$rand2 = rand(0,9);
$rand3 = rand(0,9);
$operator = array('+', '-','*','/');
$randoperator = $operator[rand(0,3)];
switch ($randoperator)
case "+":
$finalvalue = $rand1 + $rand2 + $rand3;
break;
case "-":
$finalvalue = $rand1 - $rand2 - $rand3;
break;
case "*":
$finalvalue = $rand1 * $rand2 * $rand3;
break;
case "/":
$finalvalue = $rand1 / $rand2 / $rand3;
break;
echo ("This is Q(".$x."):"), $rand1 . $randoperator . $rand2 .
$randoperator . $rand3 . '=' . $finalvalue ,'<br /><br />';
elseif(isset($_POST['digits']) == 2)
$qu = $_POST['que'];
for ($y = 1; $y <=$qu; $y++)
$rand1 = rand(10, 99);
$rand2 = rand(10, 99);
$rand3 = rand(10, 99);
$operator2 = array('+', '-','*','/');
$randoperator2 = $operator2[rand(0, 3)];
switch ($randoperator2)
case "+":
$finalvalue2 = $rand1 + $rand2 + $rand3;
break;
case "-":
$finalvalue2 = $rand1 - $rand2 - $rand3;
break;
case "*":
$finalvalue2 = $rand1 * $rand2 * $rand3;
break;
case "/":
$finalvalue2 = $rand1 / $rand2 / $rand3;
break;
echo ("This is Q(".$y."):"), $rand1 . $randoperator2 . $rand2 .
$randoperator2 . $rand3 . '=' . $finalvalue2 ,'<br /><br />';
elseif(isset($_POST['digits']) == 3)
$q = $_POST['que'];
for ($p = 1; $p <=$q; $p++)
$rand1 = rand(100,999);
$rand2 = rand(100,999);
$rand3 = rand(100,999);
$operator3 = array('+', '-','*','/');
$randoperator3 = $operator3[rand(0,3)];
switch ($randoperator3)
case "+":
$finalvalue3 = $rand1 + $rand2 +$rand3;
break;
case "-":
$finalvalue3 = $rand1 - $rand2 - $rand3;
break;
case "*":
$finalvalue3 = $rand1 * $rand2 * $rand3;
break;
case "/":
$finalvalue3 = $rand1 / $rand2 / $rand3;
break;
echo ("This is Q(".$p."):"), $rand1 . $operator3 . $rand2 . $operator3 .
$rand3 . '=' . $finalvalue3 ,'<br /><br />';
else
//invalid;
?>
I am beginner in php ,how can I do the checkbox event that suggested in the answer for this code ?
javascript php jquery html
Check this out.. [This can help you bro. ](stackoverflow.com/questions/9709209/…)
– j3thamz
Nov 14 '18 at 7:09
add a comment |
here is my form in which there are 4 checkboxes for 4 operations.
<form action="" method="POST">
Select no.of questions:<input type="number" name="que" value="que">
<br> <br>
Select no. of series: <select name="select_box">
<option value="0">Please Select</option>
<option value="1"> 2 </option>
<option value="2"> 3 </option>
</select>
<br><br>
Select number type(in digits) <input type="number" name="digits"
value="digits">
<br><br>
Select operations:<br />
<input type="checkbox" id="add" name="operation" value="addition"
id="add"><label>Addition</label>
<br/>
<input type="checkbox" id="sub" name="operation" value="substraction"
id="sub"><label>substraction</label><br/>
<input type="checkbox" id="add" name="operation" value="multiplication"
id="mul"><label>Multiplication</label><br/>
<input type="checkbox" id="add" name="operation" value="division"
id="div"><label>Division</label><br/><br / >
<br><br>
<input type="submit" name="submit" value="Generate"><br>
<br>
</form>
now how can i bind the respective event to respective checkbox (ex.If user click on addition then then only addition will perform) and in case user select 2 checkboxes at a time suppose add and subtract then only those two operation will have to perform ?
here is my php code where I am doing the rest code
<?php
//for 1 digits
if($_POST['digits'] == 1)
$que = $_POST['que'];
for ($x = 1; $x <=$que; $x++)
$rand1 = rand(0,9);
$rand2 = rand(0,9);
$rand3 = rand(0,9);
$operator = array('+', '-','*','/');
$randoperator = $operator[rand(0,3)];
switch ($randoperator)
case "+":
$finalvalue = $rand1 + $rand2 + $rand3;
break;
case "-":
$finalvalue = $rand1 - $rand2 - $rand3;
break;
case "*":
$finalvalue = $rand1 * $rand2 * $rand3;
break;
case "/":
$finalvalue = $rand1 / $rand2 / $rand3;
break;
echo ("This is Q(".$x."):"), $rand1 . $randoperator . $rand2 .
$randoperator . $rand3 . '=' . $finalvalue ,'<br /><br />';
elseif(isset($_POST['digits']) == 2)
$qu = $_POST['que'];
for ($y = 1; $y <=$qu; $y++)
$rand1 = rand(10, 99);
$rand2 = rand(10, 99);
$rand3 = rand(10, 99);
$operator2 = array('+', '-','*','/');
$randoperator2 = $operator2[rand(0, 3)];
switch ($randoperator2)
case "+":
$finalvalue2 = $rand1 + $rand2 + $rand3;
break;
case "-":
$finalvalue2 = $rand1 - $rand2 - $rand3;
break;
case "*":
$finalvalue2 = $rand1 * $rand2 * $rand3;
break;
case "/":
$finalvalue2 = $rand1 / $rand2 / $rand3;
break;
echo ("This is Q(".$y."):"), $rand1 . $randoperator2 . $rand2 .
$randoperator2 . $rand3 . '=' . $finalvalue2 ,'<br /><br />';
elseif(isset($_POST['digits']) == 3)
$q = $_POST['que'];
for ($p = 1; $p <=$q; $p++)
$rand1 = rand(100,999);
$rand2 = rand(100,999);
$rand3 = rand(100,999);
$operator3 = array('+', '-','*','/');
$randoperator3 = $operator3[rand(0,3)];
switch ($randoperator3)
case "+":
$finalvalue3 = $rand1 + $rand2 +$rand3;
break;
case "-":
$finalvalue3 = $rand1 - $rand2 - $rand3;
break;
case "*":
$finalvalue3 = $rand1 * $rand2 * $rand3;
break;
case "/":
$finalvalue3 = $rand1 / $rand2 / $rand3;
break;
echo ("This is Q(".$p."):"), $rand1 . $operator3 . $rand2 . $operator3 .
$rand3 . '=' . $finalvalue3 ,'<br /><br />';
else
//invalid;
?>
I am beginner in php ,how can I do the checkbox event that suggested in the answer for this code ?
javascript php jquery html
here is my form in which there are 4 checkboxes for 4 operations.
<form action="" method="POST">
Select no.of questions:<input type="number" name="que" value="que">
<br> <br>
Select no. of series: <select name="select_box">
<option value="0">Please Select</option>
<option value="1"> 2 </option>
<option value="2"> 3 </option>
</select>
<br><br>
Select number type(in digits) <input type="number" name="digits"
value="digits">
<br><br>
Select operations:<br />
<input type="checkbox" id="add" name="operation" value="addition"
id="add"><label>Addition</label>
<br/>
<input type="checkbox" id="sub" name="operation" value="substraction"
id="sub"><label>substraction</label><br/>
<input type="checkbox" id="add" name="operation" value="multiplication"
id="mul"><label>Multiplication</label><br/>
<input type="checkbox" id="add" name="operation" value="division"
id="div"><label>Division</label><br/><br / >
<br><br>
<input type="submit" name="submit" value="Generate"><br>
<br>
</form>
now how can i bind the respective event to respective checkbox (ex.If user click on addition then then only addition will perform) and in case user select 2 checkboxes at a time suppose add and subtract then only those two operation will have to perform ?
here is my php code where I am doing the rest code
<?php
//for 1 digits
if($_POST['digits'] == 1)
$que = $_POST['que'];
for ($x = 1; $x <=$que; $x++)
$rand1 = rand(0,9);
$rand2 = rand(0,9);
$rand3 = rand(0,9);
$operator = array('+', '-','*','/');
$randoperator = $operator[rand(0,3)];
switch ($randoperator)
case "+":
$finalvalue = $rand1 + $rand2 + $rand3;
break;
case "-":
$finalvalue = $rand1 - $rand2 - $rand3;
break;
case "*":
$finalvalue = $rand1 * $rand2 * $rand3;
break;
case "/":
$finalvalue = $rand1 / $rand2 / $rand3;
break;
echo ("This is Q(".$x."):"), $rand1 . $randoperator . $rand2 .
$randoperator . $rand3 . '=' . $finalvalue ,'<br /><br />';
elseif(isset($_POST['digits']) == 2)
$qu = $_POST['que'];
for ($y = 1; $y <=$qu; $y++)
$rand1 = rand(10, 99);
$rand2 = rand(10, 99);
$rand3 = rand(10, 99);
$operator2 = array('+', '-','*','/');
$randoperator2 = $operator2[rand(0, 3)];
switch ($randoperator2)
case "+":
$finalvalue2 = $rand1 + $rand2 + $rand3;
break;
case "-":
$finalvalue2 = $rand1 - $rand2 - $rand3;
break;
case "*":
$finalvalue2 = $rand1 * $rand2 * $rand3;
break;
case "/":
$finalvalue2 = $rand1 / $rand2 / $rand3;
break;
echo ("This is Q(".$y."):"), $rand1 . $randoperator2 . $rand2 .
$randoperator2 . $rand3 . '=' . $finalvalue2 ,'<br /><br />';
elseif(isset($_POST['digits']) == 3)
$q = $_POST['que'];
for ($p = 1; $p <=$q; $p++)
$rand1 = rand(100,999);
$rand2 = rand(100,999);
$rand3 = rand(100,999);
$operator3 = array('+', '-','*','/');
$randoperator3 = $operator3[rand(0,3)];
switch ($randoperator3)
case "+":
$finalvalue3 = $rand1 + $rand2 +$rand3;
break;
case "-":
$finalvalue3 = $rand1 - $rand2 - $rand3;
break;
case "*":
$finalvalue3 = $rand1 * $rand2 * $rand3;
break;
case "/":
$finalvalue3 = $rand1 / $rand2 / $rand3;
break;
echo ("This is Q(".$p."):"), $rand1 . $operator3 . $rand2 . $operator3 .
$rand3 . '=' . $finalvalue3 ,'<br /><br />';
else
//invalid;
?>
I am beginner in php ,how can I do the checkbox event that suggested in the answer for this code ?
javascript php jquery html
javascript php jquery html
edited Nov 14 '18 at 7:41
user10625430
asked Nov 14 '18 at 6:55
user10625430user10625430
507
507
Check this out.. [This can help you bro. ](stackoverflow.com/questions/9709209/…)
– j3thamz
Nov 14 '18 at 7:09
add a comment |
Check this out.. [This can help you bro. ](stackoverflow.com/questions/9709209/…)
– j3thamz
Nov 14 '18 at 7:09
Check this out.. [This can help you bro. ](stackoverflow.com/questions/9709209/…)
– j3thamz
Nov 14 '18 at 7:09
Check this out.. [This can help you bro. ](stackoverflow.com/questions/9709209/…)
– j3thamz
Nov 14 '18 at 7:09
add a comment |
1 Answer
1
active
oldest
votes
In your html
, add a onclick
event as below:
<input type="checkbox" id="add" name="operation" value="addition" id="add" onclick="doAddOperation()"><label>Addition</label>
In your js
, implement the doAddOperation()
as below. Do this for all operation.
function doAddOperation()
var checkbox = document.getElementById('add');
if (checkbox.checked == true)
add();
I am done with that Thank you so much . Actually I have another problem , According to fom hope you have got an idea about what I am trying to do there .I am trying to generate an arithmatic expression which will have random operands and operators based on input given by user from the above form I am uploading my rest of the code so that you willhave clear idea about it .
– user10625430
Nov 14 '18 at 7:27
Hey Rashid can yoou tell me how should I do the operation by using my php code I have posted above , or tel me what changes I can do in that code to make it work.
– user10625430
Nov 14 '18 at 14:36
Sorry brother, i am not aphp
guy. Sorry, i am not able to help you in this point :(
– Harunur Rashid
Nov 14 '18 at 15:36
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%2f53294631%2fhow-can-i-bind-event-of-one-or-more-arithmatic-operation-to-checkbox%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
In your html
, add a onclick
event as below:
<input type="checkbox" id="add" name="operation" value="addition" id="add" onclick="doAddOperation()"><label>Addition</label>
In your js
, implement the doAddOperation()
as below. Do this for all operation.
function doAddOperation()
var checkbox = document.getElementById('add');
if (checkbox.checked == true)
add();
I am done with that Thank you so much . Actually I have another problem , According to fom hope you have got an idea about what I am trying to do there .I am trying to generate an arithmatic expression which will have random operands and operators based on input given by user from the above form I am uploading my rest of the code so that you willhave clear idea about it .
– user10625430
Nov 14 '18 at 7:27
Hey Rashid can yoou tell me how should I do the operation by using my php code I have posted above , or tel me what changes I can do in that code to make it work.
– user10625430
Nov 14 '18 at 14:36
Sorry brother, i am not aphp
guy. Sorry, i am not able to help you in this point :(
– Harunur Rashid
Nov 14 '18 at 15:36
add a comment |
In your html
, add a onclick
event as below:
<input type="checkbox" id="add" name="operation" value="addition" id="add" onclick="doAddOperation()"><label>Addition</label>
In your js
, implement the doAddOperation()
as below. Do this for all operation.
function doAddOperation()
var checkbox = document.getElementById('add');
if (checkbox.checked == true)
add();
I am done with that Thank you so much . Actually I have another problem , According to fom hope you have got an idea about what I am trying to do there .I am trying to generate an arithmatic expression which will have random operands and operators based on input given by user from the above form I am uploading my rest of the code so that you willhave clear idea about it .
– user10625430
Nov 14 '18 at 7:27
Hey Rashid can yoou tell me how should I do the operation by using my php code I have posted above , or tel me what changes I can do in that code to make it work.
– user10625430
Nov 14 '18 at 14:36
Sorry brother, i am not aphp
guy. Sorry, i am not able to help you in this point :(
– Harunur Rashid
Nov 14 '18 at 15:36
add a comment |
In your html
, add a onclick
event as below:
<input type="checkbox" id="add" name="operation" value="addition" id="add" onclick="doAddOperation()"><label>Addition</label>
In your js
, implement the doAddOperation()
as below. Do this for all operation.
function doAddOperation()
var checkbox = document.getElementById('add');
if (checkbox.checked == true)
add();
In your html
, add a onclick
event as below:
<input type="checkbox" id="add" name="operation" value="addition" id="add" onclick="doAddOperation()"><label>Addition</label>
In your js
, implement the doAddOperation()
as below. Do this for all operation.
function doAddOperation()
var checkbox = document.getElementById('add');
if (checkbox.checked == true)
add();
edited Nov 14 '18 at 7:12
answered Nov 14 '18 at 7:07
Harunur RashidHarunur Rashid
1,288611
1,288611
I am done with that Thank you so much . Actually I have another problem , According to fom hope you have got an idea about what I am trying to do there .I am trying to generate an arithmatic expression which will have random operands and operators based on input given by user from the above form I am uploading my rest of the code so that you willhave clear idea about it .
– user10625430
Nov 14 '18 at 7:27
Hey Rashid can yoou tell me how should I do the operation by using my php code I have posted above , or tel me what changes I can do in that code to make it work.
– user10625430
Nov 14 '18 at 14:36
Sorry brother, i am not aphp
guy. Sorry, i am not able to help you in this point :(
– Harunur Rashid
Nov 14 '18 at 15:36
add a comment |
I am done with that Thank you so much . Actually I have another problem , According to fom hope you have got an idea about what I am trying to do there .I am trying to generate an arithmatic expression which will have random operands and operators based on input given by user from the above form I am uploading my rest of the code so that you willhave clear idea about it .
– user10625430
Nov 14 '18 at 7:27
Hey Rashid can yoou tell me how should I do the operation by using my php code I have posted above , or tel me what changes I can do in that code to make it work.
– user10625430
Nov 14 '18 at 14:36
Sorry brother, i am not aphp
guy. Sorry, i am not able to help you in this point :(
– Harunur Rashid
Nov 14 '18 at 15:36
I am done with that Thank you so much . Actually I have another problem , According to fom hope you have got an idea about what I am trying to do there .I am trying to generate an arithmatic expression which will have random operands and operators based on input given by user from the above form I am uploading my rest of the code so that you willhave clear idea about it .
– user10625430
Nov 14 '18 at 7:27
I am done with that Thank you so much . Actually I have another problem , According to fom hope you have got an idea about what I am trying to do there .I am trying to generate an arithmatic expression which will have random operands and operators based on input given by user from the above form I am uploading my rest of the code so that you willhave clear idea about it .
– user10625430
Nov 14 '18 at 7:27
Hey Rashid can yoou tell me how should I do the operation by using my php code I have posted above , or tel me what changes I can do in that code to make it work.
– user10625430
Nov 14 '18 at 14:36
Hey Rashid can yoou tell me how should I do the operation by using my php code I have posted above , or tel me what changes I can do in that code to make it work.
– user10625430
Nov 14 '18 at 14:36
Sorry brother, i am not a
php
guy. Sorry, i am not able to help you in this point :(– Harunur Rashid
Nov 14 '18 at 15:36
Sorry brother, i am not a
php
guy. Sorry, i am not able to help you in this point :(– Harunur Rashid
Nov 14 '18 at 15:36
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%2f53294631%2fhow-can-i-bind-event-of-one-or-more-arithmatic-operation-to-checkbox%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
Check this out.. [This can help you bro. ](stackoverflow.com/questions/9709209/…)
– j3thamz
Nov 14 '18 at 7:09