Sunday, July 17, 2016

style picker

function stylepicker(picker) {

var styles = document.createAttribute("style")
picker.setAttributeNode(styles)

var v = "position:fixed;left:0px;top:3%;width:100%;font-size:50px"
styles.value = v}