Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

126
Views
How to remove automatically bind <p> </p> tags in angular?

I am using the p-editor input in primeng theme. i have tried many times to removed the <p></p> tags in javascript.but not working,

i tried all javascript codes. but i didn't get the solution,how to remove automatically bind the <p></p> tags in angular.

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

You can access the text by using the innerText property of nativeElement.

Taking the ViewChild hint from @Aldin_Bradaric's comment, created a working demo below:

Stackblitz demo

<h5>Default</h5>
<p-editor #editor [(ngModel)]="text" [style]="{'height':'320px'}" (ngModelChange)="cleanString()"></p-editor>

<!-- for demo purpose -->
<p></p>
<div>Written text:</div>
{{ cleanText }}

component.ts:

import { Component, ViewChild } from '@angular/core';

export class AppComponent {
  text: string = '';
  cleanText = '';

  @ViewChild('editor', {static: false}) editor: any;

  cleanString() {
    this.cleanText = this.editor.el.nativeElement.innerText;
  }
}
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!