<cfscript> body = javaNew( "org.jsoup.Jsoup" ) .parseBodyFragment( fileRead( "./content.htm" ) ) .body() ; paragraph = body.firstElementChild(); // Remove all the children from the BODY and then try to re-add the paragraph. body .empty() .appendChild( paragraph ) ; // Output resultant HTML to the page. echo( body.outerHtml() ); // ------------------------------------------------------------------------------- // // ------------------------------------------------------------------------------- // /** * I create a new Java class wrapper using the jSoup JAR files. */ public any function javaNew( required string className ) { var jarPaths = [ expandPath( "./jsoup-1.16.1.jar" ) ]; return( createObject( "java", className, jarPaths ) ); } </cfscript>