Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript [Solved] Jquery switch view modes without refresh Re: [Solved] Jquery switch view modes without refresh

#63914
jamygolden
Member
$(document).ready(function(){
$('#toggle-grid').click(function(){
$('#grid').show();
$('#list').hide();
});
$('#toggle-list').click(function(){
$('#list').show();
$('#grid').hide();
});
});