A blog dedicated to creative design, web design tips and tutorials ..
xtrasoft web template
Get link
Facebook
X
Pinterest
Email
Other Apps
-
xtrasoft a fixed width layout design This template is designed using Photoshop. With a High Quality finish this eye catching design. I hope you are enjoying the layout and designs.
This Template is designed with travel portal in mind. Features: Full Website source codes include both Photoshop PSD files with Sliced images and web ready HTML source files Includes 1 Homepage/Content Template Includes 1 Cascading Style Sheet page The Website is highly customizable by using: Graphic Editor - Adobe Photoshop or compatible graphic editors that supports PSD file format HTML Editor - Dreamweaver You will start off with a default design, but you can change the buttons, the backgrounds, the header, add your own picture in the navigator, the home page, the header, etc...
How to check if value id null or undefined. simple way is just check if has value! Like if(value) { // ... } will return true if value is not: null, undefined, NaN, empty string (""), 0, false It’s fulfill our requirements but also check additional conditions Like we want to check id is null or undefined but in response we got id = 0 In this condition it will fail because we just need to check null or undefined if(value !== undefined || value !== null){ // ... }
Comments