What I am trying to do is I have a checkbox that will print the two input type the same.. n when unchecked it allows to have different.. here m using the following code... its working when check box is clicked.. what ever the input are given in the first input it places the same but. when i uncheck it still give me when i type some thing in the some. is there any way to disable the keyup function dat m using above..
function oncheck(){
var c=$("#ubill").attr('checked');
if(c){
var value = $("#single").val();
$("#single1").val(value);
$("input").keyup(function () {
var value = $("#single").val();
$("#single1").val(value);
});
}
else {
var value='';
$("#single1").val(value);
// what should be here
}
}
thanks in advance

