Categories
Css

Clearing floats

For a float based layout the common problem is that the container doesn’t stretch up. Try Clearing floats. For example if you want to add floats then using command the browsers it stretch up the container all the way. Suppose we are using the below css through out the page: div.container { border: 2px solid […]

Categories
Monetize

Make money on internet in 8 ways

It is very easy to make money in your free time with a little bit of expertise idea from the sofa of your own home. For earning a few bucks in a quick way here are some popular ways to make money: 1. Publish booksLove writing? Make them published and offer on various websites for […]

Categories
Css Css3

Bring new life into your CSS

Creativity does not belongs by born. So using CSS pretty much anything that can be done using your feelings. Make your interest in depth and you will be easily drawn to the next big thing. The same rule follows web industry. Days by day the world of CSS is exploring that you considered previously. Here […]

Categories
Json

JSON with Ajax

Ajax is Asynchronous JavaScript and XML for for asynchronous web applications. Using ajax data from a server asynchronously retrieved and display without reloading the page. So JSON with Ajax is no exception. JSON stands for JavaScript Object Notation. So, in simple terms JSON is a way of formatting the data. For, e.g., transmitting it over […]

Categories
Careers Feature Story

How To Secure A Job In A Foreign Country?

With the globalization of job markets, you can explore a pool of jobs in other countries. However, you must plan and research everything thoroughly to get employment in another country. There are a few things that you have to consider while searching for the right job. This guide lays out essential steps to follow so […]

Categories
Business Feature Story Technology

Top Crypto Influencers: Shaping the Future of Digital Finance

The force of cryptocurrency has been felt in financial terms, with Bitcoin disrupting markets worldwide since its advent. This industry has welcomed the growth of crypto influencers who mold narratives around blockchain technology and digital assets using their insights, analyses, and opinions. Become these influencers by being active on platforms like Twitter or Facebook, among […]

Categories
Json

Syntax of JSON

Basically Syntax of JSON is the subset of the JavaScript syntax. It has following notation: Data is represented in name/value pairs. The name/value pairs are separated by , (comma). Curly braces hold objects. Square brackets hold arrays. Below is a example of Syntax of JSON: {“students”:[ {“Name”:”Tim”, “Age”:”25″}, {“Name”:”John”, “Age”:”30″}, {“Name”:”Jane”, “Age”:”45″} ]} So,students[0].Name + […]

Categories
Json

What is JSON?

JSON or JavaScript Object Notation is nothing but a text-based human-readable data storing and interchange. Douglas Crockford originally specified the this format.The media for this is application/json and the extension is .json.This is an easier-to-use alternative of XML. The below example shown an student object with an array of 3 records: {“students”:[ {“Name”:”Tim”, “Age”:”25″}, {“Name”:”John”, […]

Categories
Css

7 CSS tricks for website

It is very essential to remember when using CSS to website that you need to maintain some types of tricks which is very helpful. CSS tricks: 1) Don’t fix the font size:You do not know in what resolution people are using your website so let auto fix the font size depends on ratio. Avoid p […]

Categories
jQuery

jQuery search and highlight text

Using jQuery you can search and highlight text within a div from array of elements and wrap a highlight span around each word. Example to search and highlight text: <script type=”text/javascript”> var regex = /(Rubbish|Like|Rough|Raw|Doggie|Billy)/ig; $(‘#divID’).each(function() { var $this = $(this); var text = $this.text(); if (regex.test(text)) { $this.html( $this.html().replace(regex, ‘<span>$1</span>’) ); } }); </script>