Yes, I see the problem. You can fix it by go to this file:
componentscom_jajobboardjsja.jobboard.js
find for:
function jaAjaxUpdate(request) {
if ($('ja-loader')) $('ja-loader').setStyle('display', 'none');
var JTooltips = new Tips($$('#jobboard-content .hasTip'), {
maxTitleChars: 50,
fixed: false
});
if (typeof(document.adminForm) !== 'undefined') {
form = document.adminForm;
}
}
and change to:
function jaAjaxUpdate(request) {
if ($('ja-loader')) $('ja-loader').setStyle('display', 'none');
var JTooltips = new Tips($$('#jobboard-content .hasTip'), {
maxTitleChars: 50,
fixed: false
});
if (typeof(document.adminForm) !== 'undefined') {
form = document.adminForm;
}
window.scrollTo(0, 0);
}
Try and tell me know the result.