{"id":23339,"date":"2015-02-25T18:01:19","date_gmt":"2015-02-25T10:01:19","guid":{"rendered":"https:\/\/www.hongkiat.com\/blog\/?p=23339"},"modified":"2024-08-16T18:31:16","modified_gmt":"2024-08-16T10:31:16","slug":"pnotify","status":"publish","type":"post","link":"https:\/\/www.hongkiat.com\/blog\/pnotify\/","title":{"rendered":"PNotify &#8211; Customizable JavaScript Notification Plugin for Your Website"},"content":{"rendered":"<p>For those of us constantly on the go, notifications keep us informed about important events, news, and updates. Notifications reduce waiting times while keeping us up-to-date with the latest happenings, making them essential on both desktops and mobile devices.<\/p>\n<p>If you want to create notifications for your site, you can easily do so with a plugin called PNotify. It\u2019s a free and open-source JavaScript plugin with numerous options and is user-friendly. With PNotify, you can display up to 1000 notifications simultaneously (check out this <a href=\"https:\/\/sciactive.com\/pnotify\/#customization\" rel=\"nofollow noopener\" target=\"_blank\">benchmarking test<\/a>). How cool is that?<\/p>\n<h2>Why Use PNotify?<\/h2>\n<p><a href=\"https:\/\/sciactive.com\/pnotify\/\" rel=\"nofollow noopener\" target=\"_blank\">PNotify<\/a>, formerly known as Pines Notify, offers three main notification types: <strong>info<\/strong>, <strong>notice<\/strong>, and <strong>error<\/strong>. It features a variety of effects, themes, and styles. You can choose from different styles such as Bootstrap, jQuery UI, Font Awesome, or even create your own. There are also about 18 pre-made themes available from <a href=\"https:\/\/bootswatch.com\/\" rel=\"nofollow noopener\" target=\"_blank\">Bootswatch<\/a> and transition effects to enhance your notifications.<\/p>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/pnotify\/styles.jpg\" width=\"900\" height=\"630\" alt=\"PNotify Notification Styles\"><\/figure>\n<p>PNotify not only boasts impressive graphical features but also includes powerful APIs and modules. These APIs support desktop notifications (based on the <a href=\"https:\/\/www.w3.org\/TR\/notifications\/\" rel=\"nofollow noopener\" target=\"_blank\">Web Notifications Draft<\/a> standard), dynamic updates, event callbacks, a history viewer to see past notifications, and HTML support in titles and bodies.<\/p>\n<p>PNotify offers an <strong>unobtrusive notification<\/strong> experience, allowing you to click through elements behind the notice without dismissing it. You can also control the notification\u2019s position using the <a href=\"https:\/\/sciactive.com\/pnotify\/#stacks\" rel=\"nofollow noopener\" target=\"_blank\">Stacks<\/a> feature, which lets you place notifications anywhere, such as top\/bottom bars or tooltips.<\/p>\n<h2>Basic Usage<\/h2>\n<p>PNotify\u2019s source files are available in customizable bundle modules and can be found <a href=\"https:\/\/sciactive.com\/pnotify\/\" rel=\"nofollow noopener\" target=\"_blank\">here<\/a>.<\/p>\n<h3>Getting Started<\/h3>\n<p>To get started, include the following script and stylesheet in your HTML:<\/p>\n<pre>\r\n&lt;script type=\"text\/javascript\" src=\"pnotify.custom.min.js\"&gt;&lt;\/script&gt;\r\n&lt;link href=\"pnotify.custom.min.css\" media=\"all\" rel=\"stylesheet\" type=\"text\/css\" \/&gt;\r\n<\/pre>\n<p>PNotify is straightforward to use. Here is a simple notification example:<\/p>\n<pre>\r\n$(function(){\r\n    new PNotify({\r\n        title: 'Simple Notification',\r\n        text: 'Hey, I\\'m a simple notification.'\r\n    });\r\n});\r\n<\/pre>\n<p>This is the result:<\/p>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/pnotify\/simple-demo.jpg\" width=\"600\" height=\"100\" alt=\"PNotify Simple Notification Demo\"><\/figure>\n<p>To create a notification, initiate a new PNotify function. You can pass the title, text, style, and other options within the function. If you don\u2019t specify the notification type, it defaults to <em>notice<\/em>. There are over <strong>20 configurable options<\/strong>. For a full list and their default values, click <a href=\"https:\/\/github.com\/sciactive\/pnotify#configuration-defaults--options\" rel=\"nofollow noopener\" target=\"_blank\">here<\/a>.<\/p>\n<h3>Styling<\/h3>\n<p>To change the style, pass the <code>styling<\/code> option in the notification and specify your desired style. Available styles include <code>bootstrap2<\/code>, <code>bootstrap3<\/code>, <code>jqueryui<\/code>, and <code>fontawesome<\/code>. Remember to include the related style sources in your project.<\/p>\n<p>For example, to change the notification style to the jQuery UI theme, use this snippet:<\/p>\n<pre>\r\nnew PNotify({\r\n    title: \"jQuery UI Style\",\r\n    text: \"Hey, I\\'m styled with jQuery UI theme.\",\r\n    styling: \"jqueryui\"\r\n});\r\n<\/pre>\n<p>Alternatively, you can set the default style for all notifications like this:<\/p>\n<pre>\r\nPNotify.prototype.options.styling = \"jqueryui\";\r\nnew PNotify({\r\n    title: \"jQuery UI Style\",\r\n    text: \"Hey, I\\'m styled with jQuery UI theme.\"\r\n});\r\n<\/pre>\n<p>Here is the styled result:<\/p>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/pnotify\/jqueryui-style.jpg\" width=\"600\" height=\"100\" alt=\"PNotify jQuery UI Style Demo\"><\/figure>\n<h3>Adding Modules<\/h3>\n<p>PNotify supports <a href=\"https:\/\/sciactive.com\/pnotify\/#demos-modules\" rel=\"nofollow noopener\" target=\"_blank\">modules<\/a>, which are rich APIs enabling advanced notification features. There are <strong>7 modules<\/strong> available: Desktop, Buttons, NonBlock, Confirm, History, Callbacks, and Reference Module. You can use these modules by passing their respective options into the notification.<\/p>\n<p>For example, here\u2019s how to use the Desktop Module:<\/p>\n<pre>\r\nPNotify.desktop.permission();\r\nnew PNotify({\r\n    title: 'Desktop Notification',\r\n    text: 'I\\'m a desktop notification. You need to give me permission so I can appear as intended. If not, I\\'ll become a regular notification.',\r\n    desktop: {\r\n        desktop: true,\r\n        icon: null\r\n    }\r\n});\r\n<\/pre>\n<p>The <code>PNotify.desktop.permission();<\/code> method ensures users have given permission for the site to display notifications. If permission is denied, the notification will be shown as a regular notice.<\/p>\n<p>To enable desktop notifications, set <code>desktop: true<\/code>. To disable it, set <code>desktop: false<\/code>. You can also use a custom icon via the <code>icon<\/code> option. Set it to your icon URL, <code>false<\/code> to disable the icon, or <code>null<\/code> to use the default icon.<\/p>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/pnotify\/desktop-demo.jpg\" width=\"600\" height=\"110\" alt=\"PNotify Desktop Notification Demo\"><\/figure>\n<p>For more module implementations and their options, visit this <a href=\"https:\/\/github.com\/sciactive\/pnotify#desktop-module\" rel=\"nofollow noopener\" target=\"_blank\">link<\/a>.<\/p>\n<p>Explore further implementation details and demos on the <a href=\"https:\/\/sciactive.com\/pnotify\/\" rel=\"nofollow noopener\" target=\"_blank\">official PNotify site<\/a>. You can also visit the <a href=\"https:\/\/github.com\/sciactive\/pnotify\" rel=\"nofollow noopener\" target=\"_blank\">GitHub page<\/a> for additional information.<\/p>","protected":false},"excerpt":{"rendered":"<p>For those of us constantly on the go, notifications keep us informed about important events, news, and updates. Notifications reduce waiting times while keeping us up-to-date with the latest happenings, making them essential on both desktops and mobile devices. If you want to create notifications for your site, you can easily do so with a&hellip;<\/p>\n","protected":false},"author":136,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[3393,352],"tags":[4117,2556],"topic":[4520],"class_list":["entry-content","is-maxi"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v22.8 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>PNotify - Customizable JavaScript Notification Plugin for Your Website - Hongkiat<\/title>\n<meta name=\"description\" content=\"For those of us constantly on the go, notifications keep us informed about important events, news, and updates. Notifications reduce waiting times while\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.hongkiat.com\/blog\/pnotify\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"PNotify - Customizable JavaScript Notification Plugin for Your Website\" \/>\n<meta property=\"og:description\" content=\"For those of us constantly on the go, notifications keep us informed about important events, news, and updates. Notifications reduce waiting times while\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.hongkiat.com\/blog\/pnotify\/\" \/>\n<meta property=\"og:site_name\" content=\"Hongkiat\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/hongkiatcom\" \/>\n<meta property=\"article:published_time\" content=\"2015-02-25T10:01:19+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-08-16T10:31:16+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/assets.hongkiat.com\/uploads\/pnotify\/styles.jpg\" \/>\n<meta name=\"author\" content=\"Irfan\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@IrfanFza\" \/>\n<meta name=\"twitter:site\" content=\"@hongkiat\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Irfan\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/pnotify\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/pnotify\\\/\"},\"author\":{\"name\":\"Irfan\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/person\\\/483b1092b8017f37d977331e91935d8c\"},\"headline\":\"PNotify &#8211; Customizable JavaScript Notification Plugin for Your Website\",\"datePublished\":\"2015-02-25T10:01:19+00:00\",\"dateModified\":\"2024-08-16T10:31:16+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/pnotify\\\/\"},\"wordCount\":540,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/pnotify\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/pnotify\\\/styles.jpg\",\"keywords\":[\"Javascripts\",\"notification\"],\"articleSection\":[\"Toolkit\",\"Web Design\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/pnotify\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/pnotify\\\/\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/pnotify\\\/\",\"name\":\"PNotify - Customizable JavaScript Notification Plugin for Your Website - Hongkiat\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/pnotify\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/pnotify\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/pnotify\\\/styles.jpg\",\"datePublished\":\"2015-02-25T10:01:19+00:00\",\"dateModified\":\"2024-08-16T10:31:16+00:00\",\"description\":\"For those of us constantly on the go, notifications keep us informed about important events, news, and updates. Notifications reduce waiting times while\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/pnotify\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/pnotify\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/pnotify\\\/#primaryimage\",\"url\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/pnotify\\\/styles.jpg\",\"contentUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/pnotify\\\/styles.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/pnotify\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"PNotify &#8211; Customizable JavaScript Notification Plugin for Your Website\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\",\"name\":\"Hongkiat\",\"description\":\"Tech and Design Tips\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\",\"name\":\"Hongkiat.com\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wp-content\\\/uploads\\\/hkdc-logo-rect-yoast.jpg\",\"contentUrl\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wp-content\\\/uploads\\\/hkdc-logo-rect-yoast.jpg\",\"width\":1200,\"height\":799,\"caption\":\"Hongkiat.com\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/hongkiatcom\",\"https:\\\/\\\/x.com\\\/hongkiat\",\"https:\\\/\\\/www.pinterest.com\\\/hongkiat\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/person\\\/483b1092b8017f37d977331e91935d8c\",\"name\":\"Irfan\",\"description\":\"Irfan is a writer for hongkiat.com and tech enthusiast all-around. He also appreciates much on minimalist and clean design. Movie and football lovers and enjoy to travel around in his free time.\",\"sameAs\":[\"https:\\\/\\\/x.com\\\/IrfanFza\"],\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/author\\\/irfan_fauzii\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"PNotify - Customizable JavaScript Notification Plugin for Your Website - Hongkiat","description":"For those of us constantly on the go, notifications keep us informed about important events, news, and updates. Notifications reduce waiting times while","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.hongkiat.com\/blog\/pnotify\/","og_locale":"en_US","og_type":"article","og_title":"PNotify - Customizable JavaScript Notification Plugin for Your Website","og_description":"For those of us constantly on the go, notifications keep us informed about important events, news, and updates. Notifications reduce waiting times while","og_url":"https:\/\/www.hongkiat.com\/blog\/pnotify\/","og_site_name":"Hongkiat","article_publisher":"https:\/\/www.facebook.com\/hongkiatcom","article_published_time":"2015-02-25T10:01:19+00:00","article_modified_time":"2024-08-16T10:31:16+00:00","og_image":[{"url":"https:\/\/assets.hongkiat.com\/uploads\/pnotify\/styles.jpg","type":"","width":"","height":""}],"author":"Irfan","twitter_card":"summary_large_image","twitter_creator":"@IrfanFza","twitter_site":"@hongkiat","twitter_misc":{"Written by":"Irfan","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.hongkiat.com\/blog\/pnotify\/#article","isPartOf":{"@id":"https:\/\/www.hongkiat.com\/blog\/pnotify\/"},"author":{"name":"Irfan","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/person\/483b1092b8017f37d977331e91935d8c"},"headline":"PNotify &#8211; Customizable JavaScript Notification Plugin for Your Website","datePublished":"2015-02-25T10:01:19+00:00","dateModified":"2024-08-16T10:31:16+00:00","mainEntityOfPage":{"@id":"https:\/\/www.hongkiat.com\/blog\/pnotify\/"},"wordCount":540,"commentCount":1,"publisher":{"@id":"https:\/\/www.hongkiat.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/pnotify\/#primaryimage"},"thumbnailUrl":"https:\/\/assets.hongkiat.com\/uploads\/pnotify\/styles.jpg","keywords":["Javascripts","notification"],"articleSection":["Toolkit","Web Design"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.hongkiat.com\/blog\/pnotify\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.hongkiat.com\/blog\/pnotify\/","url":"https:\/\/www.hongkiat.com\/blog\/pnotify\/","name":"PNotify - Customizable JavaScript Notification Plugin for Your Website - Hongkiat","isPartOf":{"@id":"https:\/\/www.hongkiat.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.hongkiat.com\/blog\/pnotify\/#primaryimage"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/pnotify\/#primaryimage"},"thumbnailUrl":"https:\/\/assets.hongkiat.com\/uploads\/pnotify\/styles.jpg","datePublished":"2015-02-25T10:01:19+00:00","dateModified":"2024-08-16T10:31:16+00:00","description":"For those of us constantly on the go, notifications keep us informed about important events, news, and updates. Notifications reduce waiting times while","breadcrumb":{"@id":"https:\/\/www.hongkiat.com\/blog\/pnotify\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.hongkiat.com\/blog\/pnotify\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.hongkiat.com\/blog\/pnotify\/#primaryimage","url":"https:\/\/assets.hongkiat.com\/uploads\/pnotify\/styles.jpg","contentUrl":"https:\/\/assets.hongkiat.com\/uploads\/pnotify\/styles.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/www.hongkiat.com\/blog\/pnotify\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.hongkiat.com\/blog\/"},{"@type":"ListItem","position":2,"name":"PNotify &#8211; Customizable JavaScript Notification Plugin for Your Website"}]},{"@type":"WebSite","@id":"https:\/\/www.hongkiat.com\/blog\/#website","url":"https:\/\/www.hongkiat.com\/blog\/","name":"Hongkiat","description":"Tech and Design Tips","publisher":{"@id":"https:\/\/www.hongkiat.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.hongkiat.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.hongkiat.com\/blog\/#organization","name":"Hongkiat.com","url":"https:\/\/www.hongkiat.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.hongkiat.com\/blog\/wp-content\/uploads\/hkdc-logo-rect-yoast.jpg","contentUrl":"https:\/\/www.hongkiat.com\/blog\/wp-content\/uploads\/hkdc-logo-rect-yoast.jpg","width":1200,"height":799,"caption":"Hongkiat.com"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/hongkiatcom","https:\/\/x.com\/hongkiat","https:\/\/www.pinterest.com\/hongkiat\/"]},{"@type":"Person","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/person\/483b1092b8017f37d977331e91935d8c","name":"Irfan","description":"Irfan is a writer for hongkiat.com and tech enthusiast all-around. He also appreciates much on minimalist and clean design. Movie and football lovers and enjoy to travel around in his free time.","sameAs":["https:\/\/x.com\/IrfanFza"],"url":"https:\/\/www.hongkiat.com\/blog\/author\/irfan_fauzii\/"}]}},"jetpack_featured_media_url":"https:\/\/","jetpack_shortlink":"https:\/\/wp.me\/s4uxU-pnotify","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/23339","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/users\/136"}],"replies":[{"embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/comments?post=23339"}],"version-history":[{"count":3,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/23339\/revisions"}],"predecessor-version":[{"id":72572,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/23339\/revisions\/72572"}],"wp:attachment":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/media?parent=23339"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/categories?post=23339"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/tags?post=23339"},{"taxonomy":"topic","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/topic?post=23339"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}