See the details here
window.addEvent('domready', function () {
var confirm = document.getElement('input[name=fabrik_confirmation]');
if (typeOf(confirm) !== 'null') {
// you are on the confirmation page
} else {
// you are NOT on the confirmation page
}
});
if ($this->app->input->get('fabrik_confirmation', '') === '1') {
//you are on the confirmation page
} else {
// you are NOT on the confirmation page
}