Skip to main content

JS

12th October, 2022

Updated: 12th October, 2022

    var links = new Array()
    
    jQuery('.entry-title a').each(function () {
      links.push(jQuery(this).attr('href'))
    })
    
    console.log(links.reverse())
    
    for (var i = 0; i < links.length; i++) {
      console.log(links[i])
    }

    c81050ad-d583-453f-a692-012bfdd67241

    Created on: 12th October, 2022

    Last updated: 12th October, 2022

    Tagged With: