
Search In
Drupal Theme Metadata
Writing a .info file is the first step when we create a Drupal theme, .info files contain important metadata about the theme, such as the list mentioned below.
name /*required*/
name = A firt theme name
We can create a slidebar menu using jquery slidebar plugin. It is a jQuery plugin that gives a slidebar menu for easily implementing in the web pages.
We have to include slidebars.js in our source files.
Here is an example that shows how to impleme
Hello Readers,
parentsUntil() is the jquery method which is used to return all the ancestors between the selector and stop.Here, ancestor element include parent, grandparent, great-grandparent, great-great grandparent and so on. This method also use
In MVC while working in API for making restful services you need to know your request and response.
You can pass data or entity from your model as you want.
But in any case, you have a requirement of passing multiple recor
In this blog we will discuss about best practices for memory management in .Net framework. Even though the .Net framework has its own garbage collection support still as developers we have to think and write code that minimizes memory wastage.
1) Create a "testDB" database.
use testDB
2) Create a collection name "users" and adding the value together using single command.
db.logins.insert({username:"neetu"})
or
First create a collection of name logins
In this post, you will learn about the plugin for automatic resizing of icons. You must know that both android and iOS platform needs different size of icons according to different devices.
If you need to change your app icon in yo
We can generate all possible combinations of given string. Here I made a function get_string_combinations($str), this function will accept string as a parameter and will give you all possible combinations of that string. In this function, I have conv
Autofocus Attribute:
It is a boolean attribute used with input fields, button that set focus on that element on which autofocus attribute has been used when a page is loaded. But we can focus only one element at a time using this attribute.
Syntax:
Following are some key challenges of Software Testing:
1) Testing the complete application:
It is quite impossible to test the complete application. There are many test combinations so it’s impossible to test every combination. It will delay
