javascript - Removing a div class with JS or JQuery on page load -


unsure if familiar typeform. testing forms limited options regards optional items such incremental question numbers, bullet points & * required questions.. ive attached screenshot of exact item shown in dev window wish remove, how possible on page load using js or jquery? i.e. document.getelementsbyclassname("item");

edit way typeform embedded shown in snippet below:

much appreciated !! item remove in google chrome dev view

<div class="typeform-widget" data-url="https://12837r8yhe.typeform.com/to/skcd9c" style="width: 100%; height: 500px;" > </div> <script> (function() { var qs,js,q,s,d=document, gi=d.getelementbyid, ce=d.createelement, gt=d.getelementsbytagname, id="typef_orm", b="https://embed.typeform.com/"; if(!gi.call(d,id)) { js=ce.call(d,"script"); js.id=id; js.src=b+"embed.js"; q=gt.call(d,"script")[0]; q.parentnode.insertbefore(js,q) } })() </script>

on page load can remove instances of class

$(document).ready(function(){   $('.item').remove('item'); }); 

or class on divs

 $(document).ready(function(){       $('div .item').remove('item');     }); 

Comments

Popular posts from this blog

ios - MKAnnotationView layer is not of expected type: MKLayer -

ZeroMQ on Windows, with Qt Creator -

unity3d - Unity SceneManager.LoadScene quits application -