If I want to make responsive text I would probably write something like that:
$(window).resize(function ()
{
if $(document).width() <= 320) {
$('#mydiv').html('something')
}
if $((document).width() > 320) && (document).width() <= 480)) {
$('#mydiv').html('something longer')
}
if $((document).width() > 480) && (document).width() <= 768)) {
}
//and so on
}
I don't think it is most efficient (and messy code) - I think that there must be a way to make it easier - Let's assume that I can write this object which stores all the data:
var divTextPerScreenWidthMap = {
{'360','click'},
{'480','click it'},
{'768','click it right'},
{'1024','you know you want to click it'},
{'1280','click this button which is very long will help you'}
}
After I have done so, is there a simple function I can write that takes this data and simplify my many-conditions function? some sort of way to tell javascript how to build me the specific function I need?
something like this thing but in real code:
for (objects in divTextPerScreenWidthMap) {
create If Statement for Nth Object(object)
}
thanks, Alon