PDF’s are the most used file on the system in offline modes. Websites like e-commerce, bill payment or bookings provide a PDF download option for receipt of orders. These sites create PDF using dynamic data and be available immediately to the users. What’s the issue? Websites use dynamic data to…
JavaScript
-
-
Export HTML table to Excel in JavaScript
Being UI Developer there are lot of cases where we create static HTML tables. Some times we create utilities for our vendors or website. Why we need Excel Export Dynamic HTML table created using JSON data, which contains useful information of any specific type. These table information can be used…
-
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…
-
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…
-
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…
-
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…
-
Replace all in JavaScript
JavaScript is very detailed language and have every small functions needed to complete your task. But some time we have some task for which javascript have function but still not complete in itself. Here we will discuss one of that function. While working on your project may be you have…
-
Free Variable in JavaScript | Why we should Love free variable
Free Variable: Free variables are simply the variables that are neither locally declared nor passed as parameter. We know about scope in JavaScript, We create private variables to enable encapsulation. To write Function or variables created in a function has local scope and not accessible out from that function blocks.…