Toggle link in jquery according to screen size

 
 
 $(document).ready(function () {

        if ($(window).width() < 520) {

            //Show mobile link

        }

        else {

            //Show Web link

        }

    });
 
Previous
Next Post »