1 2 3 4 5 6 7 8 9 10 11
$(document).ready(function() { $(".switch_featured").click(function(e){ e.preventDefault(); $.post($(this).href, {}, function(json) { $(this).text( $("result", json).text() + ); }); }); });