Blogspot - reyneil.blogspot.com - reyneil
General Information:
Latest News:
input type text place holder 13 Dec 2012 | 06:08 am
This is how to put a placeholder on input type text using simple javascript.
no domain in a string url 11 Dec 2012 | 07:28 am
This is how to display a string url without its domain name. var thisUrl="http://domain.com/directory/subdirectory/file.name" var noDomainUrl = thisUrl.replace(/https?:\/\/[^\/]+/i, ""); alert(noDom...
jQuery back to top script 27 Nov 2012 | 01:02 pm
This is an example how to make a back to top button using html and jQuery. html back-to-top back-to-top css .backToTopFix{ position:fixed; top:5px; display:none; } jQuery // get the distance from...
WP "You should update your .htaccess now" 15 Nov 2012 | 09:36 am
If other permalink setting is not working except the default, change the .htaccess file permission to editable.
jQuery numbers only on textbox 21 Sep 2012 | 10:24 am
jQuery simple accordion 7 Sep 2012 | 12:16 pm
This is a tutorial on how to make a simple accordion. jQuery jQuery(".className ul").not(":first").hide(); jQuery(".className>li>a").hover(function(){ var hasUl=jQuery(this).next("ul").html(); if(ha...
jQuery falling letters plugin 6 Sep 2012 | 05:36 am
Falling letter jQuery plugin. plug in: (function($){ $.fn.fallLetters = function(options){ // the default options var defaults = { minFont:14, // minimum font size to be displayed(in pixel) maxFont:...
simple jQuery rotator 5 Sep 2012 | 01:52 pm
This is a simple jQuery rotator for banners. jQuery: css: html:
IE6 min-height css hack 10 Aug 2012 | 11:45 am
selector { min-height:500px; height:auto !important; height:500px; }
jQuery input file change layout 28 Jun 2012 | 03:21 pm
This jQuery plug in is used to modify the style of you input file layout. html: <div id="cont"> <input type="file" class="fileUpload"> </div> jQuery: <script type="text/javascript"> jQ...