javascript - Multiple html stuff stuff stuff -
i have jquery code replaces whole column of buttons (when 1 clicked) short html line "
new html
if understand question correctly sounds want like:
$(document).ready(function() { $('a').click(function(){myfunction()}); }); function myfunction() { $('#stuff').empty().append("<p>new html</p>") }
Comments
Post a Comment