Maintain Focus on rebind

by housecor

HTML

Price <input type="text" data-bind="" /><br/>
APR <input type="text" data-bind="" /><br/>
Term <input type="text" data-bind="" /><br/>

Monthly Payment

JavaScript

new Request.JSON({
    url: '/echo/json/',
    data: {
        json: JSON.encode({
            text: 'some text',
            array: [1, 2, 'three'],
            object: {
                par1: 'another text',
                par2: [3, 2, 'one'],
                par3: {}
            }
        }),
        delay: 3
    },
    onSuccess: function(response) {
        show_response(response, $('post'));
    }
}).send();