Skip to main content

Posts

Showing posts with the label Good Sites

Kinds of heights in HTML - JQuery

While Designing the website you may come across many types of heights.. Here are some of the heights.. height( ) : This gives the height of the element which excludes padding, border and margin. innerHeight( ) : This gives the height which includes padding but excludes border and margin. outerheight( ) : This gives the height including border but no margin. oouterHeight(true) : This gives the height including Margin...

Navigation From One Page to Another Page using JavaScript, Jquery

Navigation Links Place an Imporatant role in crwaling the whole website. So for developers there are many ways in Navigationg the control from one page to another page. Here we discuss, how the navigation is done in different languages. JavaScript : Window.Location="home.php"; Php: Header("Location:home.php"); Html: <a href="home.php"> Home </a> Jquery: $(window).attr("location","home.php"); In the above examples, The control is transfered from current page to the "home.php" page

Some Good and Important Sites for WebDesigners

There are so many sites which be usefull for webdesigners. But here i disclose some other sites which will be usefull in some part of your development.   Glyphicons:                This site will be the good for getting all the icons at one place  http://glyphicons.com/   PageNest:              This is a good tool to download the website. so that you can see the website offline.   caniuse:             This is a site where you can check browser compatability for different CSS and HTML elements.               http://caniuse.com/   html5test:            This is the site where you can check whether your browser supports the HTML5 or not. It gives the             scroes based on your browsers support.    PxToEm:       ...