Drupal url function
Hi everyone, in this post we will learn about drupal url function, which is very useful to create drupal internal and external paths. While developing modules we will need it very often. There are several ways to get the path using url function.
1. Simple Path:
In simple path we just pass the path in the url function.
Ex: $simple_path = url(‘admin/modules’);
Output: /admin/modules
Here …
Five Great SEO Tips Of Improving Traffic
SEO is one of the primary things that you must do in order to start earning from your website. Here are some of the best tips that you must follow so as to improve traffic on your website.
1. Commenting: Commenting is one of the easiest and difficult tasks in any SEO. Commenting is easy because you don’t have to do …
Content slide on menu hover using jquery
Hi everyone, Most of the web clients dont like the page loading to see the content. They want it to be very user friendly and without the page loading. So Today we will slide the content of each page on mouse over using jquery. We use jquery mouse over effect to slide the content of each menu. It will be …
Alias Command
Hi everyone, In this post we will learn a simple and very useful tip about using alias command. Using alias command in terminal reduces a lot of work. Lets say for example, If you want to change the directory which has a very lengthy path (eg: cd /my_project/subDir1/subDir2/subDir3/….) It will always take time to enter into the target …
Jquery in html
Hi everyone, This post is mainly for very basic jquery beginners. The first problem they find is about integrating jquery in html. jQuery is a lightweight “write less, do more” JavaScript library. So we are going to write less and do a lot with integrating jquery in html.
Lets have a look at a very basic html code for a …
Rounded Corners using css with all browser support
Introduction:
Almost all the websites use rounded corners for an element of a web page. It is done mostly by images with rounded corners. And then most of the websites started using css properties like -moz-border-radious, -webkit-border-radius, and border-radious for rounded corners. But these properties supported only a few browsers like mozilla, chrome, etc. Browsers like …
JQuery value
Introduction:
Web developers and programmers will often need to get values from form elements to know the status of the form elements. If they want to do it in jquery “.val()” is the method used to get the values of form elements. Today we will discuss about jquery .val() method. Which is used mainly to get value of form elements.
Lets say …
