Blog Archives for category Web
Htaccess redirect exclude ip address
I used this htaccess example to redirect all the users who visit my website to the old directory except me…. Continue reading »
WordPress on apache asks for ftp credentials
When I tried to install a plugin on my ubuntu webserver wordpress kept asking for FTP credentials. You can fix… Continue reading »
Javascript snow script
Bring your webpage into the Christmas season by letting it snow on your webpage. Upload the javascript and image files,… Continue reading »
Htaccess mobile redirect
.htaccess mobile folder redirect I had some problems with other htaccess redirect scripts because they redirected the link but not… Continue reading »
jQuery dutch datepicker
jQuery dutch datepicker This Jquery datepicker example uses the dutch datepicker file and formats the date into dd/mm/yy.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
<script src="https://raw.github.com/jquery/jquery-ui/master/ui/i18n/jquery.ui.datepicker-nl.js" type="text/javascript"></script> <script> $.datepicker.setDefaults( $.datepicker.regional[ "nl" ] ); $(function() { $( "#datepicker" ).datepicker({ numberOfMonths: 2, showButtonPanel: false, dateFormat : 'dd/mm/yy' }); }); </script> <input id="datepicker" type="text" maxlength=10 placeholder="01/12/2013" required> |
Place… Continue reading »