php - DOM manipulation in codeigniter before page loads -


is there way modify html of view file before or loaded, such containing div element can wrapped around existing elements have particular class.

so example:

if have element

<div class="add-wrapper-to-this-elem">  </div> 

somewhere within view file test_view.php, when load view via $this->load->view('test_view'); view load wrapper div around elements class of add-wrapper-to-elem

is possible , how go it?

you can create wrapper view file content , load view instead:

<div class="add-wrapper-to-this-elem">           <?php $this->load->view('test_view');?> </div>  

Comments

Popular posts from this blog

c# - SVN Error : "svnadmin: E205000: Too many arguments" -

c# - Copy ObservableCollection to another ObservableCollection -

All overlapping substrings matching a java regex -