$(document).ready(function(){ $("img.caption").each(function(i) { var imgwidth = $(this).width(); var imgheight = $(this).height(); var captiontext = $(this).attr('title'); var alignment = $(this).attr('align'); $(this).attr({align:""}); $(this).wrap("
"); $(this).parent().width(imgwidth); $(this).parent().append("
" + captiontext + "
"); }); });