JSFiddle - React, Tailwind, and code Playground

HTML

<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.4/themes/ui-lightness/jquery-ui.css">
<div id='outer'>
    <div id='inner'>abc</div>
</div>

CSS

#outer {
    height: 300px;
    background: yellow;
    position:relative;
}
#inner {
    position: absolute;
    bottom: 0;
    height:0;
    width: 100%;
    background:red;
}

JavaScript

var myArray = ["http://www.google.co.uk", "http://www.ebay.co.uk"];

$.each(myArray,function (intIndex, objValue) {

    window.open(objValue);
});