{"id":18675,"date":"2022-11-01T15:04:16","date_gmt":"2022-11-01T09:34:16","guid":{"rendered":"https:\/\/jassweb.com\/solved\/solved-add-unique-class-in-randomly-position-to-the-div-with-the-same-class\/"},"modified":"2022-11-01T15:04:16","modified_gmt":"2022-11-01T09:34:16","slug":"solved-add-unique-class-in-randomly-position-to-the-div-with-the-same-class","status":"publish","type":"post","link":"https:\/\/jassweb.com\/solved\/solved-add-unique-class-in-randomly-position-to-the-div-with-the-same-class\/","title":{"rendered":"[Solved] add unique class in randomly position to the div with the same class"},"content":{"rendered":"<p> [ad_1]<br \/>\n<\/p>\n<div id=\"answer-52427715\" class=\"answer js-answer accepted-answer js-accepted-answer\" data-answerid=\"52427715\" data-parentid=\"52426886\" data-score=\"0\" 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 don&#8217;t really understood what you really want, but, here&#8217;s a solution to achieve your task when the page is loaded.<\/p>\n<p>So, when the page is loaded, we fetch all the <code>div<\/code>s containing the class <code>nprotagonistas__bg<\/code> and then randomly we&#8217;ll assign the class <code>hover<\/code> to only one of the <code>div<\/code>s. This will be done depending on the <strong>number<\/strong> of <code>div<\/code>s containing the class <code>nprotagonistas__bg<\/code> and we&#8217;ll use the built-in <code>random<\/code> method to get a random number that will be used as the index of the selected <code>div<\/code>(the random number is the index on the page of the <code>div<\/code> that&#8217;s selected to get the <code>hover<\/code> class, so reloading the page ends in getting another random <code>div<\/code>).<\/p>\n<p>With all that being said, here&#8217;s a snippet to illustrate:<\/p>\n<blockquote>\n<p>In the snippet, the <code>hover<\/code>class adds a red <code>background<\/code> to the element that has this class.<\/p>\n<\/blockquote>\n<div class=\"snippet\" data-lang=\"js\" data-hide=\"false\" data-console=\"true\" data-babel=\"false\">\n<div class=\"snippet-code\">\n<pre class=\"snippet-code-js lang-js prettyprint-override\"><code>\/\/ waiting till the page is loaded by listening to the 'load' event on the 'window' object.\r\nwindow.addEventListener('load', function() {\r\n  \/**\r\n  * fetch all the divs with the class 'nprotagonistas__bg'.\r\n  * getting the number of these divs on the page(how many div is there).\r\n  * using the 'random' method we'll get a random number that is &gt;= 0 and &lt;= the number of the divs.\r\n  **\/\r\n  var divs = document.querySelectorAll('div.nprotagonistas__bg'),\r\n      l = divs.length,\r\n      r = Math.ceil(Math.random() * l) - 1;\r\n  \/\/ assign the 'hover' class to a div depending on thethe random number.\r\n  divs[r].classList.add('hover');\r\n});<\/code><\/pre>\n<pre class=\"snippet-code-css lang-css prettyprint-override\"><code>.nprotagonistas__bg {\r\n  \/* just to make the divs visible on the page *\/\r\n  height: 50px;\r\n  border: 2px solid green;\r\n}\r\n.nprotagonistas__bg.hover{\r\n  background: red;\r\n}<\/code><\/pre>\n<pre class=\"snippet-code-html lang-html prettyprint-override\"><code>&lt;div class=\"nprotas\"&gt;\r\n&lt;div class=\"container\"&gt;\r\n    &lt;div class=\"row\"&gt;\r\n        &lt;div class=\"col-6\"&gt;\r\n            &lt;div class=\"nprotagonistas\"&gt;\r\n                &lt;div class=\"nprotagonistas__bg grey\"&gt;\r\n                &lt;\/div&gt;\r\n                &lt;div class=\"nprotagonistas__content lectores\"&gt;\r\n                &lt;\/div&gt;\r\n            &lt;\/div&gt;\r\n        &lt;\/div&gt;\r\n        &lt;div class=\"col-6\"&gt;\r\n            &lt;div class=\"nprotagonistas\"&gt;\r\n                &lt;div class=\"nprotagonistas__bg white\"&gt;\r\n                &lt;\/div&gt;\r\n                &lt;div class=\"nprotagonistas__content controladores\"&gt;\r\n                &lt;\/div&gt;\r\n            &lt;\/div&gt;\r\n        &lt;\/div&gt;\r\n        &lt;div class=\"col-6\"&gt;\r\n            &lt;div class=\"nprotagonistas\"&gt;\r\n                &lt;div class=\"nprotagonistas__bg black\"&gt;\r\n                &lt;\/div&gt;\r\n                &lt;div class=\"nprotagonistas__content videointercomunicacion\"&gt;\r\n                &lt;\/div&gt;\r\n            &lt;\/div&gt;\r\n        &lt;\/div&gt;\r\n        &lt;div class=\"col-6\"&gt;\r\n            &lt;div class=\"nprotagonistas\"&gt;\r\n                &lt;div class=\"nprotagonistas__bg red\"&gt;\r\n                &lt;\/div&gt;\r\n                &lt;div class=\"nprotagonistas__content aplicacion\"&gt;\r\n                &lt;\/div&gt;\r\n            &lt;\/div&gt;\r\n        &lt;\/div&gt;\r\n    &lt;\/div&gt;\r\n&lt;\/div&gt;<\/code><\/pre>\n<\/div>\n<\/div>\n<blockquote>\n<p><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/developer.mozilla.org\/en\/docs\/Web\/JavaScript\/Reference\/Objets_globaux\/Math\/random\">Learn more<\/a> about the <code>random<\/code> method.<\/p>\n<p><a rel=\"nofollow noopener\" target=\"_blank\" href=\"http:\/\/%20https:\/\/developer.mozilla.org\/en\/docs\/Web\/JavaScript\/Reference\/Objets_globaux\/Math\/ceil\">Learn more<\/a> about the <code>ceil<\/code> method.<\/p>\n<p><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/developer.mozilla.org\/en\/docs\/Web\/API\/EventTarget\/addEventListener\">Learn more<\/a> about the <code>addEventListener<\/code> method.<\/p>\n<\/blockquote>\n<p>Hope I pushed you further.<\/p>\n<\/p><\/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 add unique class in randomly position to the div with the same class <\/p>\n","protected":false},"excerpt":{"rendered":"<p>[ad_1] I don&#8217;t really understood what you really want, but, here&#8217;s a solution to achieve your task when the page is loaded. So, when the page is loaded, we fetch all the divs containing the class nprotagonistas__bg and then randomly we&#8217;ll assign the class hover to only one of the divs. This will be done &#8230; <a title=\"[Solved] add unique class in randomly position to the div with the same class\" class=\"read-more\" href=\"https:\/\/jassweb.com\/solved\/solved-add-unique-class-in-randomly-position-to-the-div-with-the-same-class\/\" aria-label=\"More on [Solved] add unique class in randomly position to the div with the same class\">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":[1548,346,333,388],"class_list":["post-18675","post","type-post","status-publish","format-standard","hentry","category-solved","tag-frontend","tag-html","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] add unique class in randomly position to the div with the same class - 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-add-unique-class-in-randomly-position-to-the-div-with-the-same-class\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"[Solved] add unique class in randomly position to the div with the same class - JassWeb\" \/>\n<meta property=\"og:description\" content=\"[ad_1] I don&#8217;t really understood what you really want, but, here&#8217;s a solution to achieve your task when the page is loaded. So, when the page is loaded, we fetch all the divs containing the class nprotagonistas__bg and then randomly we&#8217;ll assign the class hover to only one of the divs. This will be done ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/jassweb.com\/solved\/solved-add-unique-class-in-randomly-position-to-the-div-with-the-same-class\/\" \/>\n<meta property=\"og:site_name\" content=\"JassWeb\" \/>\n<meta property=\"article:published_time\" content=\"2022-11-01T09:34:16+00:00\" \/>\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=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-add-unique-class-in-randomly-position-to-the-div-with-the-same-class\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-add-unique-class-in-randomly-position-to-the-div-with-the-same-class\/\"},\"author\":{\"name\":\"Kirat\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\"},\"headline\":\"[Solved] add unique class in randomly position to the div with the same class\",\"datePublished\":\"2022-11-01T09:34:16+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-add-unique-class-in-randomly-position-to-the-div-with-the-same-class\/\"},\"wordCount\":189,\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"keywords\":[\"frontend\",\"html\",\"javascript\",\"jquery\"],\"articleSection\":[\"Solved\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-add-unique-class-in-randomly-position-to-the-div-with-the-same-class\/\",\"url\":\"https:\/\/jassweb.com\/solved\/solved-add-unique-class-in-randomly-position-to-the-div-with-the-same-class\/\",\"name\":\"[Solved] add unique class in randomly position to the div with the same class - JassWeb\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#website\"},\"datePublished\":\"2022-11-01T09:34:16+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-add-unique-class-in-randomly-position-to-the-div-with-the-same-class\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/jassweb.com\/solved\/solved-add-unique-class-in-randomly-position-to-the-div-with-the-same-class\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-add-unique-class-in-randomly-position-to-the-div-with-the-same-class\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/jassweb.com\/solved\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[Solved] add unique class in randomly position to the div with the same class\"}]},{\"@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=1776403586\",\"contentUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586\",\"caption\":\"Kirat\"},\"sameAs\":[\"http:\/\/jassweb.com\"],\"url\":\"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"[Solved] add unique class in randomly position to the div with the same class - 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-add-unique-class-in-randomly-position-to-the-div-with-the-same-class\/","og_locale":"en_US","og_type":"article","og_title":"[Solved] add unique class in randomly position to the div with the same class - JassWeb","og_description":"[ad_1] I don&#8217;t really understood what you really want, but, here&#8217;s a solution to achieve your task when the page is loaded. So, when the page is loaded, we fetch all the divs containing the class nprotagonistas__bg and then randomly we&#8217;ll assign the class hover to only one of the divs. This will be done ... Read more","og_url":"https:\/\/jassweb.com\/solved\/solved-add-unique-class-in-randomly-position-to-the-div-with-the-same-class\/","og_site_name":"JassWeb","article_published_time":"2022-11-01T09:34:16+00:00","author":"Kirat","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Kirat","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/jassweb.com\/solved\/solved-add-unique-class-in-randomly-position-to-the-div-with-the-same-class\/#article","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/solved-add-unique-class-in-randomly-position-to-the-div-with-the-same-class\/"},"author":{"name":"Kirat","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31"},"headline":"[Solved] add unique class in randomly position to the div with the same class","datePublished":"2022-11-01T09:34:16+00:00","mainEntityOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-add-unique-class-in-randomly-position-to-the-div-with-the-same-class\/"},"wordCount":189,"publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"keywords":["frontend","html","javascript","jquery"],"articleSection":["Solved"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/jassweb.com\/solved\/solved-add-unique-class-in-randomly-position-to-the-div-with-the-same-class\/","url":"https:\/\/jassweb.com\/solved\/solved-add-unique-class-in-randomly-position-to-the-div-with-the-same-class\/","name":"[Solved] add unique class in randomly position to the div with the same class - JassWeb","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/#website"},"datePublished":"2022-11-01T09:34:16+00:00","breadcrumb":{"@id":"https:\/\/jassweb.com\/solved\/solved-add-unique-class-in-randomly-position-to-the-div-with-the-same-class\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/jassweb.com\/solved\/solved-add-unique-class-in-randomly-position-to-the-div-with-the-same-class\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/jassweb.com\/solved\/solved-add-unique-class-in-randomly-position-to-the-div-with-the-same-class\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/jassweb.com\/solved\/"},{"@type":"ListItem","position":2,"name":"[Solved] add unique class in randomly position to the div with the same class"}]},{"@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=1776403586","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586","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\/18675","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=18675"}],"version-history":[{"count":0,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/18675\/revisions"}],"wp:attachment":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/media?parent=18675"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/categories?post=18675"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/tags?post=18675"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}