-2
Fla galera.. someone knows if there is a way to store an image directly in a javascript variable ?
example in the function below
function saudacao(obj) {
var data = new Date();
var hora = data.getHours();
var txt = "";
// ideia de variavel armanezando imagem
var variavelFoto = "img/imagem.png"
if (hora < 12) {
txt = "BOM DIA !" + variavelFoto;
} else if (hora < 18) {
txt = "BOA TARDE !" + variavelFoto;
} else {
txt = "BOA NOITE !" + variavelFoto;
}
// aqui abaixo ele insere o valor da variavel txt na div "saudacao"
document.getElementById("saudacao").innerHTML = txt;
}
sorry but why would I need to do this?
– Ricardo Pontual