I am trying to display a text element only when a link is clicked in the mobile view. I suspect there might be a syntax error in this code, but I can't pinpoint where it is.
$("#Link1").click( function()
{
if($(window).width() > 800 )
{
$("#Text1").show();
}
});