117
| <![CDATA[<script type="text/javascript">
window.addEvent('domready', function(){
var myTips = new Tips('.ckform_tooltip2', {
initialize:function(){
this.fx = new Fx.Style(this.toolTip, 'opacity', {duration: 250, wait: false}).set(0);
},
onShow: function(toolTip) {
this.fx.start(1);
},
onHide: function(toolTip) {
this.fx.start(0);
}
});
var myForm = new FormCheck('ckform2', {
fieldErrorClass : 'error',
validateDisabled : true,
display : {
showErrors : 1,
errorsLocation : 3,
indicateErrors : 2,
tipsPosition : 'right',
addClassErrorToField : true,
scrollToFirst : true
},
alerts : {
required:'Este campo é obrigatório.',
number:'Por favor, digite um número válido.',
email:'Por favor, indique um email válido: <br /><span>E.g. yourname@domain.com</span>',
url:'Por favor introduza um URL válido: <br /><span>E.g. http://www.domain.com</span>',
confirm:'Este campo é diferente de %0',
length_str:'O comprimento é incorreto, ele deve estar entre %0 e %1',
lengthmax:'O comprimento é incorreto, ele deve estar em %0 max',
lengthmin:'O comprimento é incorreto, ele deve ser no mínimo %0',
checkbox:'Por favor, marque a caixa',
radios:'Por favor, selecione uma rádio',
select:'Por favor, escolha um valor'
}
})
$(document.body).getElements('.captcharefresh').addEvents({
'click': function(){
if($chk($('captchacode'))) {
$('captchacode').setProperty('src', 'index.php?option=com_ckforms&task=captcha&sid=' + Math.random());
}
}
});
});
</script>]]>
|