Skip to content
Advertisement

HTML DOM: remove specific div based on data attribute value using php

I am new in codeigniter.I get the html string form database as shown below

JavaScript

I have another table of typefields as shown in image

enter image description here

html string is convert into DOM and add check condition of if typefieldid = 10 is flag_status = 0 then remove this div only <div id="rockfm_uiwdtl19w05" data-idfield="uiwdtl19w05" data-typefield="10" class="rockfm-select rockfm-field " ></div> but this gave me code like this

JavaScript

Issue is that when typefield = 10 is flag_status = 0 its remove <div id="rockfm_uiwdtl19w05" data-idfield="uiwdtl19w05" data-typefield="10" class="rockfm-select rockfm-field " ></div> but other information in html string is also remove. I show code of controller function where I html string converted into DOM documents, get the record of fby_id and flag_status form typefields table and making an array of this record. Then make a foreach loop of data-typefield using DOM query for getting attribute value of data-typefield then add check condition for if 0 = 1 then remove specific div

One more issue is that how to pass and show final data in view file after removing specific div based on condition. Here is code of controller function

JavaScript

and please guide me is there any option to remove only specific div from HTML DOM. I want my code output like this way

JavaScript

Advertisement

Answer

Your code is mostly there, but the main part is removing the node, I’ve changed the test to say if the status = 0, then use removeChild() to get rid of the element. Then the document should only contain the <div> elements you want at the end…

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement