{"id":13977,"date":"2022-10-06T03:02:07","date_gmt":"2022-10-05T21:32:07","guid":{"rendered":"https:\/\/jassweb.com\/solved\/solved-how-to-change-images-colors-in-internet-explorer\/"},"modified":"2022-10-06T03:02:07","modified_gmt":"2022-10-05T21:32:07","slug":"solved-how-to-change-images-colors-in-internet-explorer","status":"publish","type":"post","link":"https:\/\/jassweb.com\/solved\/solved-how-to-change-images-colors-in-internet-explorer\/","title":{"rendered":"[Solved] How to change images colors in Internet Explorer?"},"content":{"rendered":"<p> [ad_1]<br \/>\n<\/p>\n<div id=\"answer-36220904\" class=\"answer js-answer accepted-answer js-accepted-answer\" data-answerid=\"36220904\" data-parentid=\"36220692\" data-score=\"2\" data-position-on-page=\"1\" data-highest-scored=\"1\" data-question-has-accepted-highest-score=\"1\" itemprop=\"acceptedAnswer\" itemscope itemtype=\"https:\/\/schema.org\/Answer\">\n<div class=\"post-layout\">\n<div class=\"votecell post-layout--left\"><\/div>\n<div class=\"answercell post-layout--right\">\n<div class=\"s-prose js-post-body\" itemprop=\"text\">\n<p>I&#8217;m afraid this is not possible in any version of Internet Explorer.<\/p>\n<p>Here&#8217;s an overview of which browsers have support for CSS Filters at the moment I&#8217;m writing this post (March 25th, 2016) :<\/p>\n<p><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/10\/Solved-How-to-change-images-colors-in-Internet-Explorer.png\"><img decoding=\"async\" src=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/10\/Solved-How-to-change-images-colors-in-Internet-Explorer.png\" alt=\"enter image description here\"><\/a><\/p>\n<p>For an up-to-date overview, <a rel=\"nofollow noopener\" target=\"_blank\" href=\"http:\/\/caniuse.com\/#feat=css-filters\"><strong>take a look at CanIUse<\/strong><\/a>.<\/p>\n<p>While <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/github.com\/Schepp\/CSS-Filters-Polyfill\"><strong>there IS a polyfill for CSS filters<\/strong><\/a>, it has no support for IE 10+, older Presto-based Operas, Opera Mini or Android browser.<\/p>\n<p>Also, there&#8217;s only support for the following filters :<\/p>\n<ul>\n<li>grayscale (only 0% or 100% values in IE)<\/li>\n<li>sepia (only 0% or 100% values in IE)<\/li>\n<li>blur<\/li>\n<li>invert (only 0% or 100% values in IE)<\/li>\n<li>brightness<\/li>\n<li>drop-shadow<\/li>\n<\/ul>\n<hr>\n<h3>Alternative approach<\/h3>\n<p>One possible workaround would be to use a backend language like PHP to process your file.<\/p>\n<p>Consider an <code>index.php<\/code> file with the following code :<\/p>\n<pre><code>&lt;?php\n\nerror_reporting(E_ALL);\nini_set(\"display_errors\", 1);\n\nfunction rgb2hsl($r, $g, $b) {\n    $var_R = ($r \/ 255);\n    $var_G = ($g \/ 255);\n    $var_B = ($b \/ 255);\n\n    $var_Min = min($var_R, $var_G, $var_B);\n    $var_Max = max($var_R, $var_G, $var_B);\n    $del_Max = $var_Max - $var_Min;\n\n    $v = $var_Max;\n\n    if ($del_Max == 0) {\n        $h = 0;\n        $s = 0;\n    } else {\n        $s = $del_Max \/ $var_Max;\n\n        $del_R = ( ( ( $var_Max - $var_R ) \/ 6 ) + ( $del_Max \/ 2 ) ) \/ $del_Max;\n        $del_G = ( ( ( $var_Max - $var_G ) \/ 6 ) + ( $del_Max \/ 2 ) ) \/ $del_Max;\n        $del_B = ( ( ( $var_Max - $var_B ) \/ 6 ) + ( $del_Max \/ 2 ) ) \/ $del_Max;\n\n        if ($var_R == $var_Max)\n            $h = $del_B - $del_G;\n        else if ($var_G == $var_Max)\n            $h = ( 1 \/ 3 ) + $del_R - $del_B;\n        else if ($var_B == $var_Max)\n            $h = ( 2 \/ 3 ) + $del_G - $del_R;\n\n        if ($h &lt; 0)\n            $h++;\n        if ($h &gt; 1)\n            $h--;\n    }\n\n    return array($h, $s, $v);\n}\n\nfunction hsl2rgb($h, $s, $v) {\n    if ($s == 0) {\n        $r = $g = $B = $v * 255;\n    } else {\n        $var_H = $h * 6;\n        $var_i = floor($var_H);\n        $var_1 = $v * ( 1 - $s );\n        $var_2 = $v * ( 1 - $s * ( $var_H - $var_i ) );\n        $var_3 = $v * ( 1 - $s * (1 - ( $var_H - $var_i ) ) );\n\n        if ($var_i == 0) {\n            $var_R = $v;\n            $var_G = $var_3;\n            $var_B = $var_1;\n        } else if ($var_i == 1) {\n            $var_R = $var_2;\n            $var_G = $v;\n            $var_B = $var_1;\n        } else if ($var_i == 2) {\n            $var_R = $var_1;\n            $var_G = $v;\n            $var_B = $var_3;\n        } else if ($var_i == 3) {\n            $var_R = $var_1;\n            $var_G = $var_2;\n            $var_B = $v;\n        } else if ($var_i == 4) {\n            $var_R = $var_3;\n            $var_G = $var_1;\n            $var_B = $v;\n        } else {\n            $var_R = $v;\n            $var_G = $var_1;\n            $var_B = $var_2;\n        }\n\n        $r = $var_R * 255;\n        $g = $var_G * 255;\n        $B = $var_B * 255;\n    }\n    return array($r, $g, $B);\n}\n\nfunction imagehue(&amp;$image, $angle) {\n    if ($angle) {\n        if ($angle % 360 == 0)\n            return;\n        $width = imagesx($image);\n        $height = imagesy($image);\n\n        for ($x = 0; $x &lt; $width; $x++) {\n            for ($y = 0; $y &lt; $height; $y++) {\n                $rgb = imagecolorat($image, $x, $y);\n                $r = ($rgb &gt;&gt; 16) &amp; 0xFF;\n                $g = ($rgb &gt;&gt; 8) &amp; 0xFF;\n                $b = $rgb &amp; 0xFF;\n                $alpha = ($rgb &amp; 0x7F000000) &gt;&gt; 24;\n                list($h, $s, $l) = rgb2hsl($r, $g, $b);\n                $h += $angle \/ 360;\n                if ($h &gt; 1)\n                    $h--;\n                list($r, $g, $b) = hsl2rgb($h, $s, $l);\n                imagesetpixel($image, $x, $y, imagecolorallocatealpha($image, $r, $g, $b, $alpha));\n            }\n        }\n    }\n}\n\nif (isset($_GET['src'])) {\n    switch (exif_imagetype($_GET['src'])) {\n        case IMAGETYPE_PNG:\n            header('Content-type: image\/png');\n            $image = @imagecreatefrompng($_GET['src']);\n            imagealphablending($image, false);\n            imagesavealpha($image, true);\n            imagehue($image, isset($_GET['hue-rotate']) ? $_GET['hue-rotate'] : FALSE);\n            imagepng($image);\n            imagedestroy($image);\n            break;\n        case IMAGETYPE_JPEG:\n            header('Content-type: image\/jpeg');\n            $image = @imagecreatefromjpeg($_GET['src']);\n            imagehue($image, isset($_GET['hue-rotate']) ? $_GET['hue-rotate'] : FALSE);\n            imagejpeg($image);\n            imagedestroy($image);\n            break;\n        default:\n            break;\n    }\n}\n<\/code><\/pre>\n<p>If you put that file at a server that supports PHP, you could use it like this:<\/p>\n<\/p>\n<div class=\"snippet\" data-lang=\"js\" data-hide=\"false\" data-console=\"false\" data-babel=\"false\">\n<div class=\"snippet-code\">\n<pre class=\"snippet-code-html lang-html prettyprint-override\"><code>&lt;img src=\"http:\/\/www.johnslegers.com\/hue-rotate\/?src=http:\/\/i.imgur.com\/uGjlkRz.png\" \/&gt;\n&lt;img src=\"http:\/\/www.johnslegers.com\/hue-rotate\/?src=http:\/\/i.imgur.com\/uGjlkRz.png&amp;hue-rotate=59\" \/&gt;\n&lt;img src=\"http:\/\/www.johnslegers.com\/hue-rotate\/?src=http:\/\/i.imgur.com\/uGjlkRz.png&amp;hue-rotate=95\" \/&gt;\n&lt;img src=\"http:\/\/www.johnslegers.com\/hue-rotate\/?src=http:\/\/i.imgur.com\/uGjlkRz.png&amp;hue-rotate=163\" \/&gt;\n&lt;img src=\"http:\/\/www.johnslegers.com\/hue-rotate\/?src=http:\/\/i.imgur.com\/uGjlkRz.png&amp;hue-rotate=234\" \/&gt;<\/code><\/pre>\n<\/div>\n<\/div><\/div>\n<div class=\"mt24\"><\/div>\n<\/div>\n<p>            <span class=\"d-none\" itemprop=\"commentCount\">4<\/span> <\/p><\/div>\n<\/div>\n<p>[ad_2]<\/p>\n<p>solved How to change images colors in Internet Explorer? <\/p>\n","protected":false},"excerpt":{"rendered":"<p>[ad_1] I&#8217;m afraid this is not possible in any version of Internet Explorer. Here&#8217;s an overview of which browsers have support for CSS Filters at the moment I&#8217;m writing this post (March 25th, 2016) : For an up-to-date overview, take a look at CanIUse. While there IS a polyfill for CSS filters, it has no &#8230; <a title=\"[Solved] How to change images colors in Internet Explorer?\" class=\"read-more\" href=\"https:\/\/jassweb.com\/solved\/solved-how-to-change-images-colors-in-internet-explorer\/\" aria-label=\"More on [Solved] How to change images colors in Internet Explorer?\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[320],"tags":[464,1209,333,388],"class_list":["post-13977","post","type-post","status-publish","format-standard","hentry","category-solved","tag-css","tag-internet-explorer","tag-javascript","tag-jquery"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>[Solved] How to change images colors in Internet Explorer? - JassWeb<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/jassweb.com\/solved\/solved-how-to-change-images-colors-in-internet-explorer\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"[Solved] How to change images colors in Internet Explorer? - JassWeb\" \/>\n<meta property=\"og:description\" content=\"[ad_1] I&#8217;m afraid this is not possible in any version of Internet Explorer. Here&#8217;s an overview of which browsers have support for CSS Filters at the moment I&#8217;m writing this post (March 25th, 2016) : For an up-to-date overview, take a look at CanIUse. While there IS a polyfill for CSS filters, it has no ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/jassweb.com\/solved\/solved-how-to-change-images-colors-in-internet-explorer\/\" \/>\n<meta property=\"og:site_name\" content=\"JassWeb\" \/>\n<meta property=\"article:published_time\" content=\"2022-10-05T21:32:07+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/10\/Solved-How-to-change-images-colors-in-Internet-Explorer.png\" \/>\n<meta name=\"author\" content=\"Kirat\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Kirat\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-change-images-colors-in-internet-explorer\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-change-images-colors-in-internet-explorer\/\"},\"author\":{\"name\":\"Kirat\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\"},\"headline\":\"[Solved] How to change images colors in Internet Explorer?\",\"datePublished\":\"2022-10-05T21:32:07+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-change-images-colors-in-internet-explorer\/\"},\"wordCount\":158,\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"image\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-change-images-colors-in-internet-explorer\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/10\/Solved-How-to-change-images-colors-in-Internet-Explorer.png\",\"keywords\":[\"css\",\"internet-explorer\",\"javascript\",\"jquery\"],\"articleSection\":[\"Solved\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-change-images-colors-in-internet-explorer\/\",\"url\":\"https:\/\/jassweb.com\/solved\/solved-how-to-change-images-colors-in-internet-explorer\/\",\"name\":\"[Solved] How to change images colors in Internet Explorer? - JassWeb\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-change-images-colors-in-internet-explorer\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-change-images-colors-in-internet-explorer\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/10\/Solved-How-to-change-images-colors-in-Internet-Explorer.png\",\"datePublished\":\"2022-10-05T21:32:07+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-change-images-colors-in-internet-explorer\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/jassweb.com\/solved\/solved-how-to-change-images-colors-in-internet-explorer\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-change-images-colors-in-internet-explorer\/#primaryimage\",\"url\":\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/10\/Solved-How-to-change-images-colors-in-Internet-Explorer.png\",\"contentUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/10\/Solved-How-to-change-images-colors-in-Internet-Explorer.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-change-images-colors-in-internet-explorer\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/jassweb.com\/solved\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[Solved] How to change images colors in Internet Explorer?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/jassweb.com\/solved\/#website\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"name\":\"JassWeb\",\"description\":\"Build High-quality Websites\",\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/jassweb.com\/solved\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\",\"name\":\"Jass Web\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"contentUrl\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"width\":693,\"height\":132,\"caption\":\"Jass Web\"},\"image\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\",\"name\":\"Kirat\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775193939\",\"contentUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775193939\",\"caption\":\"Kirat\"},\"sameAs\":[\"http:\/\/jassweb.com\"],\"url\":\"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"[Solved] How to change images colors in Internet Explorer? - JassWeb","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:\/\/jassweb.com\/solved\/solved-how-to-change-images-colors-in-internet-explorer\/","og_locale":"en_US","og_type":"article","og_title":"[Solved] How to change images colors in Internet Explorer? - JassWeb","og_description":"[ad_1] I&#8217;m afraid this is not possible in any version of Internet Explorer. Here&#8217;s an overview of which browsers have support for CSS Filters at the moment I&#8217;m writing this post (March 25th, 2016) : For an up-to-date overview, take a look at CanIUse. While there IS a polyfill for CSS filters, it has no ... Read more","og_url":"https:\/\/jassweb.com\/solved\/solved-how-to-change-images-colors-in-internet-explorer\/","og_site_name":"JassWeb","article_published_time":"2022-10-05T21:32:07+00:00","og_image":[{"url":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/10\/Solved-How-to-change-images-colors-in-Internet-Explorer.png","type":"","width":"","height":""}],"author":"Kirat","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Kirat","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/jassweb.com\/solved\/solved-how-to-change-images-colors-in-internet-explorer\/#article","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-to-change-images-colors-in-internet-explorer\/"},"author":{"name":"Kirat","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31"},"headline":"[Solved] How to change images colors in Internet Explorer?","datePublished":"2022-10-05T21:32:07+00:00","mainEntityOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-to-change-images-colors-in-internet-explorer\/"},"wordCount":158,"publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"image":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-to-change-images-colors-in-internet-explorer\/#primaryimage"},"thumbnailUrl":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/10\/Solved-How-to-change-images-colors-in-Internet-Explorer.png","keywords":["css","internet-explorer","javascript","jquery"],"articleSection":["Solved"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/jassweb.com\/solved\/solved-how-to-change-images-colors-in-internet-explorer\/","url":"https:\/\/jassweb.com\/solved\/solved-how-to-change-images-colors-in-internet-explorer\/","name":"[Solved] How to change images colors in Internet Explorer? - JassWeb","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/#website"},"primaryImageOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-to-change-images-colors-in-internet-explorer\/#primaryimage"},"image":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-to-change-images-colors-in-internet-explorer\/#primaryimage"},"thumbnailUrl":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/10\/Solved-How-to-change-images-colors-in-Internet-Explorer.png","datePublished":"2022-10-05T21:32:07+00:00","breadcrumb":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-to-change-images-colors-in-internet-explorer\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/jassweb.com\/solved\/solved-how-to-change-images-colors-in-internet-explorer\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/solved-how-to-change-images-colors-in-internet-explorer\/#primaryimage","url":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/10\/Solved-How-to-change-images-colors-in-Internet-Explorer.png","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/10\/Solved-How-to-change-images-colors-in-Internet-Explorer.png"},{"@type":"BreadcrumbList","@id":"https:\/\/jassweb.com\/solved\/solved-how-to-change-images-colors-in-internet-explorer\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/jassweb.com\/solved\/"},{"@type":"ListItem","position":2,"name":"[Solved] How to change images colors in Internet Explorer?"}]},{"@type":"WebSite","@id":"https:\/\/jassweb.com\/solved\/#website","url":"https:\/\/jassweb.com\/solved\/","name":"JassWeb","description":"Build High-quality Websites","publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/jassweb.com\/solved\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/jassweb.com\/solved\/#organization","name":"Jass Web","url":"https:\/\/jassweb.com\/solved\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/","url":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","contentUrl":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","width":693,"height":132,"caption":"Jass Web"},"image":{"@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31","name":"Kirat","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/","url":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775193939","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775193939","caption":"Kirat"},"sameAs":["http:\/\/jassweb.com"],"url":"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/"}]}},"_links":{"self":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/13977","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/comments?post=13977"}],"version-history":[{"count":0,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/13977\/revisions"}],"wp:attachment":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/media?parent=13977"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/categories?post=13977"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/tags?post=13977"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}