Dear Appery,
I truly hope you'll be able to help me though it may be out of your support scope... i'm trying to implement this beautiful CountDown, i added the JS asset and on the page load event i pasted the following:
precode
// Initiate Countdown
$('#countdown_dashboard').countDown({
targetOffset: {
'day': 0,
'month': 0,
'year': 0,
'hour': 0,
'min': 0,
'sec': 0
}
});
// Set by date/time offset
function set_by_offset() {
$('#countdown_dashboard').stopCountDown();
$('#countdown_dashboard').setCountDown({
targetOffset: {
'day': 0,
'month': 0,
'year': 0,
'hour': 2,
'min': 0,
'sec': 0
}
});
$('#countdown_dashboard').startCountDown();
}
//var x = set_by_offset()
/code/pre
when i load the page i get this error:
precode
TypeError: elem is undefined
jquery-1.8.2.js (line 1718)
var noData = elem.nodeName && jQuery.noData[ elem.nodeName.toLowerCase() ];
/code/pre
hope you'll be able to figure this out!!
Best,
R.