I want to change data-width attr depends on (window).width();
here's example Codepen example
piece of code
if ((screen_wd >= 0 ) && (screen_wd <= 460)) {
$(".fb-like-box").attr({
"data-width": "440px"
});
}
else if((screen_wd > 460 ) && (screen_wd <= 720)){
$(".fb-like-box").attr({
"data-width": "700px"
});
}
else{
$(".fb-like-box").attr({
"data-width": "980px"
});
}
Rest in example
When u will change window width to for example 400 and "F5" reload it works but it doesnt change on real time resize.
Thank you for help:)