
Search In
Hi readers !
In this blog we will see how we can clear all textboxes in a form using jQuery .
To clear a textbox with id 'txtBox1' in javascript we use below code :
document.getElementById('txtBox1').value = '';
We can use this code to clear s
To get the current web page url in Laravel 5. you can use the URL::current() helper function. here is an example.
Route::get('/current/url', function()
{
return URL::current();
});
Good Day Folks!
1. Is the following regex ok to extract top level domains and 2nd level domains ?
[^.]*\.[^.]{2,3}(?:\.[^.]{2,3})?$
How to write php code to use that regex ?
Any sample code welcome.
Hello Readers!
Bootstrap is the most amazing HTML and CSS framework by far. Also, the grid system is near to perfect.
It has columns and rows to keep our content just in place perfectly. But everything has its weak point.
Bootstrap has its own whe
Hello Reader's if you are working on single project and want to rename localhost to any other word then this blog is very helful to you.
So let's start with the following steps
Step 1 : Open httpd.conf file you can fine it i
Description:
Given a string of integers, count how many times that integer repeats itself, then return a string showing the count and the integer.
Example: countMe('1123') (count_me in Ruby)
Here 1 comes twice so <count><integer
For sending emails using Nodejs we will be using The Nodemailer module.
Nodemailer is a module that provides sending emails from the NodeJs application.
Here are some features of the Nodemailer module:
1) Zero Dependencies.
2) Sup
Django is Python web framework for developing dynamic websites and applications. Using Django we can develop Python web applications faster.
There are number of ways for installing Django, for now I will discuss two ways for installing Django
i) Gl
Install SSH Server on Ubuntu 14.04
In order to install SSH server on Ubuntu, you need to install OpenSSH server package. Use the following command to setup SSH server:
sudo apt-get install openssh-server
Configure SSH Server
After installation i
What is QR Code?
A QR code (Quick Response Code) is a type of barcode that is readable by dedicated QR readers, iPhone, Android and smartphones. The barcode using encoded information like numbers, letters, and Kanji characters. QR Code is an 2D Code
