$(document).ready(function(){ $('.lightbox').lightBox({fixedNavigation:false}); $('#co-vas-trapi a:odd').addClass('barva'); $('.add-kosik').click(function(event){ event.preventDefault(); var id = $(this).attr('rel'); var mnozstvi = $('#mnozstvi').attr('value'); var varianta = $('#varianta').attr('value'); // alert(id+' '+mnozstvi+' '+varianta); $('#kosik').load("ajax/kosik", {'id': id, 'mnozstvi': mnozstvi, 'varianta': varianta}); }); $('.poslat-dotaz').click(function(event){ event.preventDefault(); // $(this).hide(); $('.formular-mail').show(); $('html, body').animate({scrollTop: $('body').height()}, 500); }); function IsEmail(email) { var regex = /^([a-zA-Z0-9_\.\-\+])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/; return regex.test(email); } $('.odeslat-dotaz').click(function(event){ event.preventDefault(); tel = $('#telefon').attr('value'); email = $('#email').attr('value'); dotaz = $('#dotaz').val(); if (IsEmail(email) && (dotaz != '')) { $('.formular-mail').load("ajax/odeslat-dotaz", {'tel': tel, 'email': email, 'dotaz': dotaz}, function(){ top.location = "odeslan-dotaz"; }); } else alert('Nejsou vyplněny povinné údaje.'); }); function findValue(li) { if( li == null ) return alert("No match!"); // if coming from an AJAX call, let's use the CityId as the value if( !!li.extra ) var sValue = li.extra[0]; // otherwise, let's just display the value in the text box else { var sValue = li.selectValue; $('#f').submit(); } // alert("The value you selected was: " + sValue); } function selectItem(li) { findValue(li); } function formatItem(row) { return row[0] + " (id: " + row[1] + ")"; } function lookupAjax(){ var oSuggest = $("#CityAjax")[0].autocompleter; oSuggest.findValue(); return false; } function lookupLocal(){ var oSuggest = $("#CityLocal")[0].autocompleter; oSuggest.findValue(); return false; } $("#q").autocompleteArray( [ "Ivan", "Justan", "Chloupky", "Malá prsa", "Vrásky", "Malé rty", "Propadlé tváře", "Nadměrné pocení", "Víčka", "Znamínka", "Obličej", "Výrůstky", "Tuk", "Rty", "Bradavice", "Pigment", "Pokles tváří", "Barevné skvrny", "Akne", "Chlupy", "Pupínky", "Červené žilky", "Vrásky", "Metličky", "Pytle pod očima", "Pavoučci", "Vlasy", "Stehna", "Vypadávání vlasů", "Prsa", "Vrásky", "Velká prsa", "Znaménka", "Pokleslé koutky", "Boky", "Vrásky pod očima", "Podbradek", "Pleť", "Oči", "Nos", "Břicho", "Holení podpaží", "Velké břicho", "Vaky pod očima", "Převis víček", "Pigmentace" ], { delay:10, minChars:1, matchSubset:1, onItemSelect:selectItem, onFindValue:findValue, autoFill:true, maxItemsToShow:10 } ); });