Skip to content

Instantly share code, notes, and snippets.

@tolyod
Last active September 13, 2019 14:36
Show Gist options
  • Save tolyod/54c50f6e367b68c1de74821c2d052fbb to your computer and use it in GitHub Desktop.
Save tolyod/54c50f6e367b68c1de74821c2d052fbb to your computer and use it in GitHub Desktop.
<hr/>
<div class="page production">
	<div id="products" class="grid">
		<div id="loading" class="lightcase-icon-spin"></div>
	</div>
	<div class="clr"></div>
</div>
<script>
$(document).ready(function() {
    $.get('/search/?search_query=MW-Light+%D0%9D%D0%BE%D1%80%D0%B4%D0%B5%D0%BD&isNaked=1&nc_ctpl=250', null, 'html').success(function(response) {
        $('#products').html(response);
    }).error($('#products .lightcase-icon-spin').hide());
    return false;
}); 
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment