Cybercrux

Everything is achievable through technology

class

Jquery Class definition sample – can be loaded anywhere

var RMS = function(ids, rms) {
var self = this;
var timer = null;
var delay = 2000;
this.refresh = function() {
$.post(refreshUrl, {ids: $(ids).val()},
function(response) {
var result = $.parseJSON(response);
if (result != null) {
$(rms).attr(“value”, result.rms);
}
timer = setTimeout(function() {
self.refresh();
}, delay);
}
);
};
};
// invocation deferred until the DOM is ready
$(document).ready(function() {
var rms = new RMS(‘#ids’, ‘#rms’);
rms.refresh();
});

Leave a comment