28 lines
787 B
JavaScript
28 lines
787 B
JavaScript
$(function(){
|
|
|
|
$("a.ancLinks").click(function(){
|
|
var elementClick=$(this).attr("href");
|
|
var destination=$(elementClick).offset().top;
|
|
$('html,body').animate({scrollTop:destination},3000);
|
|
return false;
|
|
});
|
|
$("button").click(function(event){
|
|
var link=$(this).data('link');
|
|
var ajax=$(this).data('ajax');
|
|
var txt=$(this).data('txt');
|
|
if(link){
|
|
document.location.href=link;
|
|
}
|
|
if(ajax){
|
|
$.ajax({
|
|
type:"POST",url:ajax,data:"txt="+txt
|
|
})
|
|
}
|
|
})
|
|
|
|
|
|
|
|
|
|
$("input[type=email], input[type=password], input[type=text], textarea").addClass("form-control");
|
|
//$("input[type=submit]").addClass("btn-outline-secondary");
|
|
}); |