Tällä lomakkeella voit tilata Nokian Koukkujärven BIG aseman häiriötiedotteet.
Voit perua tiedotteet lähettämällä tekstiviestin BIG10 EROA numeroon 18200.
Hopealuotipalvelun häiriötiedotteen tietosuojaseloste
var emailRequired = false; var phoneRequired = false;
phoneRequired = true;
function isPhone(str) { if (str != '') { var phonePattern = /^(((((\+){1}|(00){1}))?([1-9]){1}\d{0,3}(\d){6,11})|((0){1}([1-9]){1}(\d){5,10})|(((\(){1}(0){1}([1-9]){1}(\d){1}(\)){1}){1}(\d){5,10}))$/gi; str = str.split(' ').join(''); str = str.split('-').join(''); return str.match(phonePattern); } else { return false; } } jQuery.validator.addMethod("gwPhone", function(value, element) { if (value != '') { return isPhone(value); } else { return true; } });
$(function() { $("#webForm").validate({rules: { phone : { required: phoneRequired, gwPhone: true }, email : { required: emailRequired, email: true } }, messages: { phone: { gwPhone: "Ole hyvä ja syötä kelvollinen puhelinnumero." } } }); $("#webForm input").keydown(function() { $("#webForm").valid(); }); });