Saturday, November 15, 2025
HomeLanguagesJavascriptOpen all persons solution links from submission page using JavaScript

Open all persons solution links from submission page using JavaScript

JavaScript is a high-level, interpreted programming language that conforms to the ECMAScript specification. jQuery is a JavaScript library designed to simplify HTML DOM tree traversal and manipulation. 

Example:

  • Step 1: Open any neveropen solution page. Like open problem submissions page. Open the page in inspect mode by pressing F12 or through inspect option.
  • step 2: Now copy and paste the below javascript code in the console window and press Enter. In 2.5 seconds all the solutions will be listed one by one.

Example: 

javascript




// Array to insert page links
javascript: var arr = [];
var i = 1;
  
// Accessing the dom to find the "View solution"
// link of each person's solution
for(i = 1; i <= 30; i++) {
    var flag = false;
    if (document.getElementsByClassName("well table whiteBgColor")
                                    [0].children[0].children[i]) {
          
        var link = document.getElementsByClassName
                                    ("well table whiteBgColor")
        [0].children[0].children[i].lastElementChild.children[0]
                                    .href.trim().toString();
          
        // If ith submission is not there
        // then break the loop
        flag = true;
    }
      
    if (!flag) {
        break;
    }
      
    arr.push(link);
}
  
// Opening multiple tabs with
// the links in the array
function open_win() {
    for(var i = 0; i < arr.length; i++) {
        console.log(arr[i]);
        window.open(arr[i]);
    }
}
  
// In 2.5 seconds multiple tabs will get
// open with the search results links
setTimeout(function() {
    open_win();
}, 2500);


Output: Live results 

Note: In the first run of the script a popup will come. We have to allow popups because Chrome wants to know if we want multiple tabs to be used or not. Then re-run the script.

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!
RELATED ARTICLES

Most Popular

Dominic
32399 POSTS0 COMMENTS
Milvus
95 POSTS0 COMMENTS
Nango Kala
6765 POSTS0 COMMENTS
Nicole Veronica
11917 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11984 POSTS0 COMMENTS
Shaida Kate Naidoo
6889 POSTS0 COMMENTS
Ted Musemwa
7143 POSTS0 COMMENTS
Thapelo Manthata
6838 POSTS0 COMMENTS
Umr Jansen
6840 POSTS0 COMMENTS