Showing posts with label Development. Show all posts
Showing posts with label Development. Show all posts

Monday, September 7, 2020

Prevail Your Website in Market with Unique WordPress Development

Posted by Web Idea Solution | September 07, 2020 Categories:

Back in the 2003, WordPress has entered the market and since the initial days it is considered as one of the best open source technologies and the highly preferred blogging tool across the world. This is easy to use and flexible and it has made the users to go with its flow because nothing has made the development community to grow faster than WordPress.  The users who wish to create a new website or upgrade the existing website using the WordPress development have made the right decision so far. And to avail this advantage, you must hire wordpress developer in India.

hire wordpress developer in India

To keep the inline presence firm and appealing, WordPress is the first choice of all. This is being greatly used in forum portal, the web portals, the web directories, the coupon sites and most importantly the blogging sites. With the help of the expert and best web development agency in Kolkata you can add usability, interactivity, functionality and accessibility to the websites.

When you avail service from a WordPressDeveloper, you must look forward to get the high quality service equipped with quality content management system as well as interactive theme development. The professionals would ensure that your website is all equipped with the latest trends as well the techniques established in the market and would give you the advantages winning over the competitors.

The high end utility and the user friendliness have made the Wordpress popular to all. You can get customizable templates and designs where you can modify the fonts, the graphics and logo, the banner, widgets easily.

Direction: https://g.page/WebIdeaSolution


Friday, September 6, 2019

Using cookies in JavaScript

Posted by Web Idea Solution | September 06, 2019 Categories: , ,

 Using cookies in JavaScript


Cookies are small items of data, each consisting of a name and value,
stored on behalf of a website by visitors’ web browsers. In JavaScript, cookies can be accessed through the document.Cookies.js is a JavaScript object that allows cookies to be created, retrieved, and deleted through a simple and intuitive interface.
Download Cookies.js files below and use for cookies.

how to SetCookie:

Cookie.Set('color','blue');
 
For create cookies set 2 parameter cookie name and parameter.
The value of the property can be either a date on which the cookie will expire or a number of seconds after which the cookie should expire:

Cookies.set('theme', 'green', {expiry : 3600});
 
if you want cookies to access only one domain then

Cookies.set(‘name’, ‘Shilpa’, {expiry : new Date(2030, 0, 1)});

Retrieving Cookies

if you retrive, cookies value then,

var theme = Cookies.get('color');
 
Deleting cookies

if you delete cookies value then,

Cookies.clear('color');
 

Using cookies in JavaScript





  • Facebook
  • Twitter
  • Linkedin
  • Pinterest
  • Email