How to duplicate "title" <a> as a "alt" of "img". using regex, manually?
- by jitendra
How to add title of link as a alt of img. using regex and in dreamweaver. I have to do in a large document. and in multiple files
Before
<a title="Whatever is written here" href="#" target="_blank">
<img width="14" height="14" src="#" /></a>
after
<a title="Whatever is written here" href="#" target="_blank">
<img width="14" height="14" src="#" alt="Whatever is written here" /></a>