Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
33527 amit.gupta 1
$(function () {
2
    $(document).on('click', ".similar-items", function () {
3
        loadSimilarItems();
4
    });
5
});
6
 
7
function loadSimilarItems() {
8
    doGetAjaxRequestHandler(context + "/similar-items", function (
9
        response) {
10
        loadHtml(response);
11
    });
12
}