jquery based on screen size code example
Example: jquery if screen size
$(document).ready(function() {
if($(window).width() >= 1024) {
$('a.expand').click();
}
});
$(document).ready(function() {
if($(window).width() >= 1024) {
$('a.expand').click();
}
});