How to move html source code to a different location in page using dreamweaver -


i need move selection of html code different location in web page using find , replace in dreamweaver not work

for example:

     <div id="popups">       <div id="pop1">         <div class="clean-graypop" id="pop1content"><b>vector</b><br/> living carrier, such insect, transports infectious agent infected individual susceptible individual.</div>       </div></div> 

i want move code different location (in our case, bottom of html page).

i have hundreds of html pages these styled popup divs differing text content.

i want able find them , move them

i found can target these divs using regex code /*[\w\w]**/

this works if use comment tags surround code of interest. regex code find text within comment tags

however, there no way in find&replace know can move found source code different location

basically want find , move action

any ideas

thanks jon


Comments

Popular posts from this blog

c++ - CryptStringToBinary API behavior -

c++ - Correct method for redrawing a layered window -

java.util.scanner - How to read and add only numbers to array from a text file -