I tried the following two script but neither work. Please advise. Thank you.
- $("input[name='loanAmount']").mouseleave(function(){
- var Amount = $this.attr("input[name='loanAmount']").val();
- _satellite.setVar('loanAmount',Amount);
- _satellite.getVar('loanAmount');
- Return true;
- I also tried this.
- var Amount = $this.attr("input[name='loanAmount']");
- _satellite.setVar('loanAmount',Amount);
- _satellite.getVar('loanAmount');
- Return true;