
Search In
If you want to select more than one images at a time in phone gap application, you can use the plugin cordova-image Picker. It allows you to select multiple images and also provides the properties for setting maximum images and changing the size or q
I was facing issue to post data by a form to foreign domain. I am aware of "AJAX cross-domain policy". So we just can't call "http://yahoo.com" over ajax http request and display the results on my page. So after researching I
I am writing this blog, because there was a case when I have to send email without the link. For example: If in email I send some data:
<p>Your Email id is: amuk.saxena@evontech.com.</p>
Now when the email is sent to gmail, then gmail a
$.each loop is the substitute of the age old for loop and for-in loop.
jquery provide an object iterator utitlity $.each() and collection iterator utitlity .each().
$.each is an generic iterator function for loop. It is used for both object and arr
Hello Friend,
Many times we need to capitalize the first latter of data in the spreadsheet and many of us do this task manually.
But what if one have a large data containing thousand of columns will you then do this one by one, for me it
In Windows Application programming, many developers create the log file in the app directory which is not always available to a regular user and its not a good idea.
The log file should probably go in the AppData folder i.e. %appdata% as long a
A copy constructor is a special type of constructor by using which we can initialize the data members of a newly created object by existing objects. The compiler provides a default copy constructor.
Syntax of calling a copy constructor is:
co
Synchronized block:
Synchronized block is mainly used when there is a sharing of resources and it is used to lock an object for any shared resource so that at a particular time only one object can use that resource. By using synchronized block only
Hello friends, I am writing this blog as I was facing issue reading .xps files. XPS is XML Paper Specification. I resolved this issue by installing xpstopdf converter. This is how I did
This is the easiest way to do:
First, go to Ubuntu Software ce
I want to write a recursive method which sorts the singly linked list and takes only one argument. And do not write another auxiliary method to support this recursive method.
