In a thumbnail website, if I want to display 100x100 thumbs on screnn resolutions lower than 1280x1024 while display 150x150 thumbs for screens higher than 1280x1024, is the following procedure correct?
- Render a page frame with no thumbs by view1()
- On page frame loaded, it detects client's screen resolution and pass it to another Django view call fetchthumb()
- View fetchthumb() create html code containing the thumb images and return to page frame.
- jQuery on page frame render thumb html on browser.
Are there any better methods?