Are you a WordPress beginner and tried to move your website from existing server to new another yourself. Then definitely you might have seen this issue “Can’t select database”. Not wondered if you have spent more than hour to resolve this issue and ask some of your friend for same. Some times…
UI Developer
-
-
Hoisting in JavaScript
Hoisting is JavaScript concept which make JavaScript different from language Java. In Java every variable created in code have block level scope. Means if we have create any variable that will have its visibility limited into that block in which it was declared. So if we use variable above from…
-
Equal height column Problem – Solved
Coloumn structure is very in web layouts. CSS framework become popular because they overcome the issue creating coloums. We just use their classes and coloum is ready to use. But one issue is not fixed by these framework is have coloum of same height. It becomes very painfull task specially…
-
Undefined in JavaScript
We all know about undefined most of time we found undefined error in our browser console. Developer got confuse when it comes and why its coming. Before we start to learn why its coming lets learn what is Undefined in JavaScript. undefined is a property of the global object, The…
-
Create own Library | Chaining method using Native JavaScript
All most every UI or Web developer use jQuery for DOM manipulation tasks. With the help of jQuery it become easy to write our own custom codes. jQuery have lots of special feature which make it popular framework. Like selector, ajax,events. But the most impressive feature of using jQuery is…
-
Calculate dynamic height of iFrame | how to calculate content height of iFrame | Access iframe parent tag id
Using iFrame is very wrong approach to achieve any functionality. But due to some unavoidable reasons we have to use iframe in our application. After using iframe in application our main problem becomes that how to give its height so that user not able to know that there is any…
-
Interview Questions for HTML Developer, Interview Questions for Web designer
Q 1.: Is CSS Case Sensitive? Ans: CSS is case insensitive in all matters under its control; however, some things, such as the document markup language, are beyond its control. HTML is case insensitive in most respects, Except when it comes to certain attribute values, like the id and class…
-
JavaScript Function to get Query String
In Get Query String Value | Part 1 we described how to get query string value using core Object of JavaScript location. Using location object to retrieve query string value is very tricky and tedious task. Therefore I came up with the simplest solution to get query string value directly.…
-
Get Query String Value from URL | Query string value in JavaScript
As a JavaScript Developer dynamic things can be done by calling API\’s. But making API\’s almost impossible for UI Developer or need developer help.Most of time we need to do some small tweaks or changes on our HTML DOM based on user selection or behavior. Here we use of our…
-
jQuery Tips to improve page performance
As a web developer you and I can understand the necessity of optimize website. We know even a five second delay in page load could be reason to loose hundreds of user every day. So writing good and optimize code which is very important and will help to boost your…