Categories
Creative blog Social Media & Marketing

Benefits of using facebook comments

Facebook offers a commenting service on other website and that has few benefits to attract genuine commentators. Here we will discuss why you should be using Facebook commenting system on your site rather than default WordPress comment form and this is better than other systems like Disqus. Let me list out some reasons that states […]

Categories
Css

Horizontally center a div within a div using CSS style

Sometimes we need to horizontally center a div that is within another div using CSS that make the inner element center horizontally. In that case, you don’t have to set the width to 50%. So, any width which is less than the containing div will work. Let’s see how to horizontally center a div. For […]

Categories
Creative blog

Attract readers to your blog

Are you experiencing lack of readers for your blog? It’s not really the fault of your blog content. Here are few expensive tips to attract more readers to your blog. You only focused on writing a great content rather than promoting or sharing. There are many factors associated with your Blog that can make you […]

Categories
Css3

HTML5 placeholder color with CSS

Want to change the color of a placeholder of your input fields? Here is an example that helps you to change the color of a placeholder. Basically, there are three different implementations i.e. pseudo-elements, pseudo-classes, and nothing. WebKit, Blink (Safari, Google Chrome, Opera 15+) and Microsoft Edge are using a pseudo-element: ::-webkit-input-placeholder. Mozilla Firefox 4 […]

Categories
Creative blog

Get free traffic to your blog

Get free traffic to your blog by using numerous methods which you can use right now for your running blog. For your new blog, you need readers always to grow your blog time by time. There are so many ways to get free traffic and paid traffic to your blog. Here we are describing some […]

Categories
jQuery

jQuery live() Method

The jQuery live method attach one or more event handlers for all elements which match the current selector and specifies a function to run when the events occur. Event handlers attached using live() method works for both current and future elements which match the selector. Syntax of jQuery live(): $(selector).live(event, data, function) Note: The jQuery […]

Categories
jQuery

Why use jQuery on() instead of click()

The on() method attaches one or more event handler functions for one or more events to the selected elements. Event handlers attached using the jQuery on() method will work for both current and future elements i.e. dynamic element created by a script. Note: As of jQuery version 1.7, the jQuery on() method is the new […]

Categories
Creative blog

List of Blogs that Accept Guest Posts

One of the finest methods for obtaining backlinks to your blogs and generating income is guest posting or creating blogs. The advantage is that the backlinks are of a high caliber and can allow you to improve your domain authority and rank higher. It is better known as content marketing. The majority of blogs are featured based on […]

Categories
jQuery

jQuery bind() and unbind() – attaching event handlers

jQuery bind() function is used to attach one or more event handler to elements, while the unbind() is used to removes an existing event handler from elements. As of jQuery version 1.7, jQuery on() method is the preferred method rather than jquery bind and unbind for attaching event handlers for selected elements. bind() : A basic […]

Categories
jQuery

Using Delegate and Undelegate in jQuery

Using delegate and undelegate in jQuery, you can bind or remove a handler from the event for all elements that matches the current selector. Basically, these methods achieve the same thing as the jQuery .live() and .die() methods but they just use a different syntax. Syntax of Delegate: $(selector).delegate(childSelector,event,data,function) Example of jQuery Delegate: $(“table”).delegate(“td”, “hover”, […]