Please can help. How can the variables passed. I have function for select option
Example jquery:-
var one = '1';
var two = '2';
$(document).ready(function(){
$(#).change(function(){
if(one == '1'){
var one = 'hello';
}
});
$(#).change(function(){
if(two == '2'){
var two = 'world!';
}
});
if (one =='hello' && two =='world!'){
$(#welcome).hmtl("hello world!")
}
});