{"id":1319,"date":"2024-03-01T10:31:00","date_gmt":"2024-03-01T10:31:00","guid":{"rendered":"https:\/\/codehim.com\/?p=1319"},"modified":"2024-03-04T08:31:49","modified_gmt":"2024-03-04T03:31:49","slug":"jquery-question-answer-plugin-jquery-quiz","status":"publish","type":"post","link":"https:\/\/codehim.com\/others\/jquery-question-answer-plugin-jquery-quiz\/","title":{"rendered":"jQuery Question Answer Plugin &#8211; jQuery Quiz"},"content":{"rendered":"<section class=\"cm-tb\">\n<div class=\"cm-row\">\n<p class=\"plugin-intro\">An awesome jQuery Quiz plugin to generate multiple choice question answer dynamically. The Quiz let&#8217;s you to create MCQs based quiz test tool or game.  <\/p>\n<\/p><\/div>\n<div class=\"cm-row\">\n<\/div>\n<\/section>\n<section class=\"codehim-wrapper\">\n<div class=\"d-row\">\n<h2>Plugin Preview<\/h2>\n<figure class=\"item-preview\">\n<div id=\"featured-img-id\"><img decoding=\"async\" src=\"https:\/\/codehim.com\/wp-content\/uploads\/2019\/03\/jquery-question-answer-plugin.jpg\" alt=\"jQuery Question Answer Quiz Plugin\" \/><\/div><\/figure>\n<div class=\"item-like-share\">\n<div class=\"codehim-share\"> <span class=\"share-title\">Share this:<\/span> <span class=\"share-btn-container\"> <\/span> <\/div><\/p>\n<\/div>\n<p><span class=\"small-text\"><a href=\"https:\/\/codehim.com\/how-to-start-using-jquery\/\"> How to start using jQuery?<\/a><\/span><br \/>\n<span class=\"large-text\"><a href=\"https:\/\/codehim.com\"> More jQuery Top, Best and New Plugins <\/a><\/span><br \/>\n<span class=\"small-text\"><a href=\"https:\/\/codehim.com\/tag\/top-100\/\"> Top 100 jQuery Plugins<\/a><\/span><\/p>\n<\/div>\n<div class=\"d-row\">\n<h2> Plugin Overview<\/h2>\n<table class=\"plugin-overview\">\n<tbody>\n<tr>\n<td><i class=\"fa fa-plug\"><\/i> Plugin:<\/td>\n<td> Quiz<\/td>\n<\/tr>\n<tr>\n<td><i class=\"fa fa-user\"><\/i> Author:<\/td>\n<td><a class=\"external\" target=\"_blank\" href=\"https:\/\/jchamill.com\" rel=\"noopener noreferrer\"> jchamill <\/a> <\/td>\n<\/tr>\n<tr>\n<td><i class=\"fa fa-file-text-o\"><\/i> Licence:<\/td>\n<td><a href=\"https:\/\/opensource.org\/licenses\/MIT\" class=\"external\" target=\"_blank\" rel=\"noopener noreferrer\"> MIT Licence <\/a><\/td>\n<\/tr>\n<tr>\n<td><i class=\"fa fa-calendar-check-o\"><\/i> Published:<\/td>\n<td class=\"publish-date\">March 1, 2024<\/td>\n<\/tr>\n<tr>\n<td><i class=\"fa fa-github\"><\/i>Repository:<\/td>\n<td> <a href=\"https:\/\/github.com\/jchamill\/jquery-quiz\" target=\"_blank\" class=\"external\" rel=\"noopener noreferrer\">Fork on GitHub <\/a><\/td>\n<\/tr>\n<tr>\n<td><i class=\"fa fa-link\"><\/i> Dependencies:<\/td>\n<td><a href=\"https:\/\/jquery.com\/download\/\" target=\"_blank\" class=\"external\" rel=\"noopener noreferrer\">jQuery 1.8.2 <\/a> or Latest version <\/td>\n<\/tr>\n<tr>\n<td><i class=\"fa fa-file-code-o\"><\/i> File Type:<\/td>\n<td>zip archive (HTML, CSS &amp; JavaScript)<\/td>\n<\/tr>\n<tr>\n<td><i class=\"fa fa-file-archive-o\"><\/i> Package Size:<\/td>\n<td>15 KB<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<div class=\"cd-action\"><a class=\"btn demo\" target=\"_blank\" href=\"https:\/\/codehim.com\/demo\/jquery-quiz-test-plugin\/\" rel=\"nofollow noopener noreferrer\"> Demo <\/a><a class=\"btn download\" href=\"https:\/\/codehim.com\/download\/jquery-quiz-test-plugin.zip\" rel=\"nofollow\"> Download<\/a><\/div>\n<\/div>\n<\/section>\n<div class=\"ad-after-overview\">\n<\/div>\n<h2> How to Use Quiz (Question Answer) Plugin:<\/h2>\n<p>1. To getting started with Quiz, load the plugin&#8217;s JavaScript &#038; CSS file after jQuery library. <\/p>\n<pre class=\"prettyprint lang-html\">\r\n&lt;!-- jQuery --&gt;\r\n&lt;script src=\"https:\/\/code.jquery.com\/jquery-3.3.1.min.js\"&gt;&lt;\/script&gt;\r\n\r\n&lt;!-- Quiz Js --&gt;\r\n&lt;script src=\"dist\/jquery.quiz-min.js\"&gt;&lt;\/script&gt;\r\n\r\n&lt;!-- Quiz CSS --&gt;\r\n&lt;link rel=\"stylesheet\" href=\"dist\/jquery.quiz-min.css\"&gt;\r\n<\/pre>\n<p>2. Create HTML structure for Quiz where the multiple choice questions will be  shown.<\/p>\n<pre class=\"prettyprint lang-html\">\r\n&lt;div id=\"quiz\"&gt;\r\n  &lt;div id=\"quiz-header\"&gt;\r\n    &lt;h1&gt;Basic Quiz Demo&lt;\/h1&gt;\r\n    &lt;p&gt;&lt;a id=\"quiz-home-btn\"&gt;Home&lt;\/a&gt;&lt;\/p&gt;\r\n  &lt;\/div&gt;\r\n  &lt;div id=\"quiz-start-screen\"&gt;\r\n    &lt;p&gt;&lt;a href=\"#\" id=\"quiz-start-btn\" class=\"quiz-button\"&gt;Start&lt;\/a&gt;&lt;\/p&gt;\r\n  &lt;\/div&gt;\r\n&lt;\/div&gt;\r\n<\/pre>\n<p>3. Initialize the Quiz plugin with the following structure and add your question and answer in option&#8217;s array. <\/p>\n<pre class=\"prettyprint lang-js\">\r\n$('#quiz').quiz({\r\n    \/\/resultsScreen: '#results-screen',\r\n    \/\/counter: false,\r\n    \/\/homeButton: '#custom-home',\r\n    counterFormat: 'Question %current of %total',\r\n    questions: [\r\n      {\r\n        'q': 'A smaple question?',\r\n        'options': [\r\n          'Answer 1',\r\n          'Answer 2',\r\n          'Answer 3',\r\n          'Answer 4'\r\n        ],\r\n        'correctIndex': 1,\r\n        'correctResponse': 'Custom correct response.',\r\n        'incorrectResponse': 'Custom incorrect response.'\r\n      },\r\n      {\r\n        'q': 'A smaple question?',\r\n        'options': [\r\n          'Answer 1',\r\n          'Answer 2',\r\n          'Answer 3',\r\n          'Answer 4'\r\n        ],\r\n        'correctIndex': 2,\r\n        'correctResponse': 'Custom correct response.',\r\n        'incorrectResponse': 'Custom incorrect response.'\r\n      },\r\n    ]\r\n  });\r\n<\/pre>\n<p>Note: Add as many questions as you like. You may also specify a<br \/>\ndifferent number of options (answers) for each question.<\/p>\n<p>4. Customise CSS style for the jQuery question answer plugin&#8217;s interface. <\/p>\n<pre class=\"prettyprint lang-css\">\r\n.quiz-container {\r\n    padding: 1em;\r\n    max-width: 100%;\r\n    margin: 1em auto;\r\n}\r\n\r\n.quiz-container a {\r\n    text-decoration: none;\r\n    color: #333;\r\n}\r\n\r\n#quiz-header,\r\n#quiz-start-screen,\r\n#quiz-results-screen,\r\n#quiz-counter {\r\n    text-align: center;\r\n}\r\n\r\n.question {\r\n    font-size: 1.25em;\r\n}\r\n\r\n.answers {\r\n    list-style: none;\r\n    padding: 0;\r\n}\r\n\r\n.answers a {\r\n    display: block;\r\n    padding: 0.5em 1em;\r\n    margin-bottom: 0.5em;\r\n    background: #fff;\r\n    border-radius: 10px;\r\n}\r\n\r\n.answers a.correct {\r\n    background: #090;\r\n}\r\n.answers a.incorrect {\r\n    background: #c00;\r\n}\r\n\r\n.answers a.correct,\r\n.answers a.incorrect {\r\n    color: #fff;\r\n}\r\n\r\n#quiz-controls {\r\n    background: #333;\r\n    color: #fff;\r\n    padding: 0.5em 1em;\r\n    text-align: center;\r\n    border-radius: 10px;\r\n}\r\n\r\n#quiz-response {}\r\n#quiz-results {\r\n    font-size: 1.25em;\r\n}\r\n\r\n#quiz-buttons a,\r\n.quiz-container .quiz-button {\r\n    display: inline-block;\r\n    padding: 0.5em 1em;\r\n    background: #333;\r\n    color: #fff;\r\n    border-radius: 10px;\r\n}\r\n#quiz-buttons a {\r\n    background: #fff;\r\n    color: #333;\r\n}\r\n\r\n\/* Quiz State Overrides *\/\r\n\r\n.quiz-results-state #quiz-controls {\r\n    background: none;\r\n    padding: 0;\r\n}\r\n.quiz-results-state #quiz-buttons a {\r\n    background: #333;\r\n    color: #fff;\r\n}\r\n<\/pre>\n<h2> Quiz Plugin&#8217;s Options <\/h2>\n<p> The following are some useful options for customization of working of the plugin. <\/p>\n<pre class=\"prettyprint lang-js\">\r\nallowIncorrect: true, \/\/If false plugin will show game over on the screen\r\n\r\ncounter: true, \/\/Specify the counter for quiz \r\n\r\nnextButtonText: 'Next', \/\/Text on the the next button \r\n\r\nfinishButtonText: 'Finish', \/\/Text on the finish button \r\n\r\nrestartButtonText: 'Restart', \/\/Text on restart button \r\n\r\nresultsScreen: '#results-screen', \/\/ selector for result screen \r\n\r\nhomeButton: '#custom-home', \/\/selector for home button \r\n<\/pre>\n<h2> jQuery Question Answer Plugin&#8217;s Callback Function <\/h2>\n<p>The following are some callbacks possibilities to fired custom function.<\/p>\n<pre class=\"prettyprint lang-js\">\r\nanswerCallback: function(){}, \/\/ Callback fired after an answer is selected.\r\n\r\nnextCallback: function(){}, \/\/Callback fired after the next button is clicked.\r\n\r\nfinishCallback: function(){}, \/\/ Callback fired after the finish button is clicked.\r\n\r\nhomeCallback: function(){}, \/\/Callback fired after the home button is clicked.\r\n<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>An awesome jQuery Quiz plugin to generate multiple choice question answer dynamically. The Quiz let&#8217;s you to create MCQs based&#8230;<\/p>\n","protected":false},"author":1,"featured_media":1322,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[56],"tags":[],"class_list":["post-1319","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-others"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>jQuery Question Answer Plugin - jQuery Quiz &#8212; CodeHim<\/title>\n<meta name=\"description\" content=\"A lightweight jQuery plugin for making multiple choice question answer tool \/ game with fully customization. Written in HTML, CSS and JavaScript (jQuery).\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/codehim.com\/others\/jquery-question-answer-plugin-jquery-quiz\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"jQuery Question Answer Plugin - jQuery Quiz &#8212; CodeHim\" \/>\n<meta property=\"og:description\" content=\"A lightweight jQuery plugin for making multiple choice question answer tool \/ game with fully customization. Written in HTML, CSS and JavaScript (jQuery).\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codehim.com\/others\/jquery-question-answer-plugin-jquery-quiz\/\" \/>\n<meta property=\"og:site_name\" content=\"CodeHim\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/codehimofficial\" \/>\n<meta property=\"article:published_time\" content=\"2024-03-01T10:31:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-03-04T03:31:49+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codehim.com\/wp-content\/uploads\/2019\/03\/jquery-question-answer-plugin.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"962\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Asif Mughal\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@CodeHimOfficial\" \/>\n<meta name=\"twitter:site\" content=\"@CodeHimOfficial\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Asif Mughal\" \/>\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:\/\/codehim.com\/others\/jquery-question-answer-plugin-jquery-quiz\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/others\/jquery-question-answer-plugin-jquery-quiz\/\"},\"author\":{\"name\":\"Asif Mughal\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\"},\"headline\":\"jQuery Question Answer Plugin &#8211; jQuery Quiz\",\"datePublished\":\"2024-03-01T10:31:00+00:00\",\"dateModified\":\"2024-03-04T03:31:49+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/codehim.com\/others\/jquery-question-answer-plugin-jquery-quiz\/\"},\"wordCount\":205,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/others\/jquery-question-answer-plugin-jquery-quiz\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2019\/03\/jquery-question-answer-plugin.jpg\",\"articleSection\":[\"Others\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/codehim.com\/others\/jquery-question-answer-plugin-jquery-quiz\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/codehim.com\/others\/jquery-question-answer-plugin-jquery-quiz\/\",\"url\":\"https:\/\/codehim.com\/others\/jquery-question-answer-plugin-jquery-quiz\/\",\"name\":\"jQuery Question Answer Plugin - jQuery Quiz &#8212; CodeHim\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/codehim.com\/others\/jquery-question-answer-plugin-jquery-quiz\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/others\/jquery-question-answer-plugin-jquery-quiz\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2019\/03\/jquery-question-answer-plugin.jpg\",\"datePublished\":\"2024-03-01T10:31:00+00:00\",\"dateModified\":\"2024-03-04T03:31:49+00:00\",\"description\":\"A lightweight jQuery plugin for making multiple choice question answer tool \/ game with fully customization. Written in HTML, CSS and JavaScript (jQuery).\",\"breadcrumb\":{\"@id\":\"https:\/\/codehim.com\/others\/jquery-question-answer-plugin-jquery-quiz\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/codehim.com\/others\/jquery-question-answer-plugin-jquery-quiz\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/others\/jquery-question-answer-plugin-jquery-quiz\/#primaryimage\",\"url\":\"https:\/\/codehim.com\/wp-content\/uploads\/2019\/03\/jquery-question-answer-plugin.jpg\",\"contentUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2019\/03\/jquery-question-answer-plugin.jpg\",\"width\":1280,\"height\":962,\"caption\":\"jQuery Question Answer Quiz Plugin\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/codehim.com\/others\/jquery-question-answer-plugin-jquery-quiz\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/codehim.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Others\",\"item\":\"https:\/\/codehim.com\/category\/others\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"jQuery Question Answer Plugin &#8211; jQuery Quiz\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/codehim.com\/#website\",\"url\":\"https:\/\/codehim.com\/\",\"name\":\"CodeHim\",\"description\":\"Web Design Code Snippets\",\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"alternateName\":\"Web Design Codes\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/codehim.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/codehim.com\/#organization\",\"name\":\"CodeHim - Web Design Code & Scripts\",\"url\":\"https:\/\/codehim.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/logo\/image\/\",\"url\":\"http:\/\/codehim.com\/wp-content\/uploads\/2023\/06\/Codehim-short-logo.jpg\",\"contentUrl\":\"http:\/\/codehim.com\/wp-content\/uploads\/2023\/06\/Codehim-short-logo.jpg\",\"width\":280,\"height\":280,\"caption\":\"CodeHim - Web Design Code & Scripts\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/codehimofficial\",\"https:\/\/x.com\/CodeHimOfficial\",\"https:\/\/www.instagram.com\/codehim\/\",\"https:\/\/www.linkedin.com\/company\/codehim\",\"https:\/\/co.pinterest.com\/codehim\/\",\"https:\/\/www.youtube.com\/@codehim\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\",\"name\":\"Asif Mughal\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/b25bfcd7d4e341c2c6f785a88d8ad2a4?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/b25bfcd7d4e341c2c6f785a88d8ad2a4?s=96&d=mm&r=g\",\"caption\":\"Asif Mughal\"},\"description\":\"I code and create web elements for amazing people around the world. I like work with new people. New people new Experiences. I truly enjoy what I'm doing, which makes me more passionate about web development and coding. I am always ready to do challenging tasks whether it is about creating a custom CMS from scratch or customizing an existing system.\",\"sameAs\":[\"https:\/\/codehim.com\"],\"url\":\"https:\/\/codehim.com\/author\/asif-mughal\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"jQuery Question Answer Plugin - jQuery Quiz &#8212; CodeHim","description":"A lightweight jQuery plugin for making multiple choice question answer tool \/ game with fully customization. Written in HTML, CSS and JavaScript (jQuery).","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:\/\/codehim.com\/others\/jquery-question-answer-plugin-jquery-quiz\/","og_locale":"en_US","og_type":"article","og_title":"jQuery Question Answer Plugin - jQuery Quiz &#8212; CodeHim","og_description":"A lightweight jQuery plugin for making multiple choice question answer tool \/ game with fully customization. Written in HTML, CSS and JavaScript (jQuery).","og_url":"https:\/\/codehim.com\/others\/jquery-question-answer-plugin-jquery-quiz\/","og_site_name":"CodeHim","article_publisher":"https:\/\/www.facebook.com\/codehimofficial","article_published_time":"2024-03-01T10:31:00+00:00","article_modified_time":"2024-03-04T03:31:49+00:00","og_image":[{"width":1280,"height":962,"url":"https:\/\/codehim.com\/wp-content\/uploads\/2019\/03\/jquery-question-answer-plugin.jpg","type":"image\/jpeg"}],"author":"Asif Mughal","twitter_card":"summary_large_image","twitter_creator":"@CodeHimOfficial","twitter_site":"@CodeHimOfficial","twitter_misc":{"Written by":"Asif Mughal","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/codehim.com\/others\/jquery-question-answer-plugin-jquery-quiz\/#article","isPartOf":{"@id":"https:\/\/codehim.com\/others\/jquery-question-answer-plugin-jquery-quiz\/"},"author":{"name":"Asif Mughal","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed"},"headline":"jQuery Question Answer Plugin &#8211; jQuery Quiz","datePublished":"2024-03-01T10:31:00+00:00","dateModified":"2024-03-04T03:31:49+00:00","mainEntityOfPage":{"@id":"https:\/\/codehim.com\/others\/jquery-question-answer-plugin-jquery-quiz\/"},"wordCount":205,"commentCount":1,"publisher":{"@id":"https:\/\/codehim.com\/#organization"},"image":{"@id":"https:\/\/codehim.com\/others\/jquery-question-answer-plugin-jquery-quiz\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2019\/03\/jquery-question-answer-plugin.jpg","articleSection":["Others"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codehim.com\/others\/jquery-question-answer-plugin-jquery-quiz\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codehim.com\/others\/jquery-question-answer-plugin-jquery-quiz\/","url":"https:\/\/codehim.com\/others\/jquery-question-answer-plugin-jquery-quiz\/","name":"jQuery Question Answer Plugin - jQuery Quiz &#8212; CodeHim","isPartOf":{"@id":"https:\/\/codehim.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codehim.com\/others\/jquery-question-answer-plugin-jquery-quiz\/#primaryimage"},"image":{"@id":"https:\/\/codehim.com\/others\/jquery-question-answer-plugin-jquery-quiz\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2019\/03\/jquery-question-answer-plugin.jpg","datePublished":"2024-03-01T10:31:00+00:00","dateModified":"2024-03-04T03:31:49+00:00","description":"A lightweight jQuery plugin for making multiple choice question answer tool \/ game with fully customization. Written in HTML, CSS and JavaScript (jQuery).","breadcrumb":{"@id":"https:\/\/codehim.com\/others\/jquery-question-answer-plugin-jquery-quiz\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codehim.com\/others\/jquery-question-answer-plugin-jquery-quiz\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/others\/jquery-question-answer-plugin-jquery-quiz\/#primaryimage","url":"https:\/\/codehim.com\/wp-content\/uploads\/2019\/03\/jquery-question-answer-plugin.jpg","contentUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2019\/03\/jquery-question-answer-plugin.jpg","width":1280,"height":962,"caption":"jQuery Question Answer Quiz Plugin"},{"@type":"BreadcrumbList","@id":"https:\/\/codehim.com\/others\/jquery-question-answer-plugin-jquery-quiz\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codehim.com\/"},{"@type":"ListItem","position":2,"name":"Others","item":"https:\/\/codehim.com\/category\/others\/"},{"@type":"ListItem","position":3,"name":"jQuery Question Answer Plugin &#8211; jQuery Quiz"}]},{"@type":"WebSite","@id":"https:\/\/codehim.com\/#website","url":"https:\/\/codehim.com\/","name":"CodeHim","description":"Web Design Code Snippets","publisher":{"@id":"https:\/\/codehim.com\/#organization"},"alternateName":"Web Design Codes","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/codehim.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/codehim.com\/#organization","name":"CodeHim - Web Design Code & Scripts","url":"https:\/\/codehim.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/#\/schema\/logo\/image\/","url":"http:\/\/codehim.com\/wp-content\/uploads\/2023\/06\/Codehim-short-logo.jpg","contentUrl":"http:\/\/codehim.com\/wp-content\/uploads\/2023\/06\/Codehim-short-logo.jpg","width":280,"height":280,"caption":"CodeHim - Web Design Code & Scripts"},"image":{"@id":"https:\/\/codehim.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/codehimofficial","https:\/\/x.com\/CodeHimOfficial","https:\/\/www.instagram.com\/codehim\/","https:\/\/www.linkedin.com\/company\/codehim","https:\/\/co.pinterest.com\/codehim\/","https:\/\/www.youtube.com\/@codehim"]},{"@type":"Person","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed","name":"Asif Mughal","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/b25bfcd7d4e341c2c6f785a88d8ad2a4?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b25bfcd7d4e341c2c6f785a88d8ad2a4?s=96&d=mm&r=g","caption":"Asif Mughal"},"description":"I code and create web elements for amazing people around the world. I like work with new people. New people new Experiences. I truly enjoy what I'm doing, which makes me more passionate about web development and coding. I am always ready to do challenging tasks whether it is about creating a custom CMS from scratch or customizing an existing system.","sameAs":["https:\/\/codehim.com"],"url":"https:\/\/codehim.com\/author\/asif-mughal\/"}]}},"views":3988,"_links":{"self":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/1319","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/comments?post=1319"}],"version-history":[{"count":1,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/1319\/revisions"}],"predecessor-version":[{"id":11340,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/1319\/revisions\/11340"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media\/1322"}],"wp:attachment":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media?parent=1319"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/categories?post=1319"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/tags?post=1319"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}