Hi friends, As we know that if we declared a variable outside the function of javascript, then it is said to be global variable. But this is not a correct way to declare global variable. Correct way ...
Javascript provide us a push() method by using this method we can add new element in to the array. Ex:- var name = ["Amit", "Rohit", "Manoj"]; // existing array with ...
In my Last Blog (init git) I metioned how to initialize git repository, Now lets see what git init did and also understand where git stores its files to do version control on our project. On terminal ...
Queue is a kind of Abstract data structure that holds items in same order. Queue follow FIFO mechanism for operations like insertion and deletion of items. Note : - One end is always used to insert ...
If a column is not in date datatype but the inserted values in that columns are as date type. and you want to update that column in date type but without loosing values in that column. You can use the ...
We often need to integrate search functionality in our application, If our rails application is using PostgreSQL as a database, then we can use pg_search gem. This is the easiest way to add a search ...
Here's how you can create short URLs using Bit.ly services /* returns the shortened url */ function get_bitly_short_url($url,$login,$appkey,$format='txt ...
Here I will try to explain the form authentication in MVC. Step-1 Let's start with a new MVC project, following steps: File > New > Project, a dialog box appears, select "Web" from the "Template" ...
Dear friends, I am a Blogger working with an eCommerce company and also run a personal affiliate blog site. Please share various tips & tricks to attract more clicks on my blog and write-ups.
While working on a Magento allication for eCommerce website, I am getting "Page Isn't Redirecting Properly Error". Can anyone let me know how to resolve this issue.
Can you tell me why this isn't working with comparing numbers?? All assistance is truly & greatly appreciated. function init(){ var a = document.getElementById("a").value; var b = ...
Hello Reader's!Comments is very useful for your website where users can give there feedback suggestion and discuss problems with us so for that i have decided that to create a comments system in ...