Utilizing the mobile-first approach of Zurb Foundation, I successfully created a responsive design. However, my client now requires a direct link labeled "View desktop version" in the footer for when the website is accessed on mobile devices or tablets.
There appear to be two potential solutions:
Abandon Zurb Foundation and develop new CSS files (potentially by extracting specific rules from the foundation core CSS for the grid); creating separate files for desktop and mobile. These files could then be loaded based on cookie values or URL queries. (Lengthy method)
Adjust the screen size parameters (such as max-width, min-width, etc.) using JavaScript to trick the media query into loading incorrect information that ultimately displays the desired results. (Creative solution)
Is the second option technically feasible? Are there other (simpler) methods available to accomplish this task?