CSS Style center

CSS Styles, CSS tips

Portfolio

Category Archives: javascript

creating a serverless apps with localStorage

Hey fellas, Im going to explain to you the idea of how to create a native serverless application in javascript. I will link you to my js fiddle code here, and explain things afterwards The idea is to use localStorage a new feature that modern browsers have, you can check if the browser supports it [...]

jQuery fadeIn list of elements one after another

Hello again, Today im going to show you how you can fadeIn list of elements one after another. The code is simple, informative and short and it’s wrote with jQuery. Here it is: At first we declare the document.ready so that our JS will run after the DOM is fully loaded and we can start [...]

Show Hide password field

Hey Mates, Today i’m going to explain to you how to create a checkbox that show/hides password field characters. We will be working with jQuery code, but you can easily can do it in any other framework. First lets see our markup: then we will add our jQuery to that page (best is in a linked [...]

Javascript prototype extension method

Lets say you have some string that you want to preform some action on him, like check if the string is Hebrew, to know if you want to display it as rtl text or ltr… first we will need to have that string in some integer like this: then we will need a String.prototype function [...]

Forms and E-Mail Validation Example

I have found myself every time looking for ready scripts to save me time in writing scripts. Forms and Email address validation is one of them, and sometimes it’s hard to find a good script, so i have decided to share the script i use in my sites for validating e-mails and forms. Two things [...]