Vuestras opiniones, nuestras sonrisas
Recopilamos las palabras dulces que recibimos, echa un vistazo y deja la tuya. 🙌
Hay ningún artículo en esta categoría
// prevent display of too big images
var f = function() {
$("#gd img").each(function() {
$(this).show();
if (this.width > 300) {
//console.log($(this).parent().html(),this.width)
$(this).attr({
"width" : 300,
"height" : ""
})
}
})
}
$("#gd img").add(window).on("load", f)
f()
$(function() {
sn_share()
})