Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

$(function() {
        $(".content-upload").live('click', function() {
                loadcontent("main-content");
        });
        
});
function loadcontent(domId) {
        doGetAjaxRequestHandler(context + "/getContentUploader",
                        function(response) {
                                $('#' + domId).html(response);
                        });
}