Category Archives: HTML

Color Picker – HTML5

Hi Friends, Today I’m going to tell related to color picker in html. The HTML5 has many new features than HTML. It support <video>, <audio>, and <canvas&gt tags and also different input types support like input type=”text/date/color/…”. It look like Adobe Photoshop color picker. For selecting the color combination or single color, in PHP or… Read More »

CSS Zoom Effect on Image Hover

Hi all Today we will discuss one interesting topic related to CSS code for creating zoom effect on image hover. In image hover there are many ways are available to add special effect. We can adding a zoom effect using CSS3 transition on image when the user hover the image. The CSS3 transition also provide… Read More »

Image With Shadow – CSS

Hi friends, Today I share one important topic related to CSS effect. Here I describe image box shadow using CSS3. Shadow is a powerful properties in CSS. CSS3 box-shadow properties allows you to create single or multiple, inner or outer drop-shadows. We can use these properties our site our needs. We can set the style… Read More »

Retype password Validation – Javascript

Hi Guys, Here I explain, how to check Password and Confirm Password validation for Password TextBox using pur javascript method with demo. The Password and Confirm password are in textboxes. And these are compared using JavaScript and if the values do not match an error message will occur like password must be same. If the… Read More »

Difference between document.ready and window.onload or pageLoad

Hi all, Today we are discuss one important topic related to document.ready and window.onload or pageLoad. $(document).ready() If the DOM is ready, jQuery’s document.ready() method gets called The $(document).ready() function executes when HTML document is loaded and DOM is ready. It is jQuery specific event It is cross browser compactibility It’sthe best for onetime initialization.… Read More »

Concatenate two variables or strings – PHP

Hi Friends, The DOT(.) operator is used to concatenate two variable or string in PHP. The ‘.’ operator which returns the concatenation of its right and left string. eg: And also ‘.=’ operator used append the arguments on the right side to the left side arguments. eg: Example 1 Example 2 COMMA is not concatenating… Read More »