Scrapped数据包含与angular app冲突的jquery

The Scenario-:

I am scrapping a website go display a form inside my angular application. I am using php to scrap this data, Which send me the html as a string through a rest api.

Inside my angular application i use $sce.trustAsHtml(scrappedView) to compile the string to html and display the actual form on my application dashboard.

Now the problem-:

The page which is scrapped from another website contains jQuery 1.11.0, My application uses angular 1.4.

When the view is loaded inside my app no functionality/operation inside the form work. However on doing a POC inside a jquery application the for works perfectly fine.

My guess is that the jQuery and angular are conflicting due to the same Identifier($). Is their a way where i can avoid this conflict through angularjs, or any workarounds at all.

do you have access to the source code of the scrapped page? then you can you change the jquery to no conflict mode: https://api.jquery.com/jquery.noconflict/

From Angular's documentation:

AngularJS 1.3 only supports jQuery 2.1 or above. jQuery 1.7 and newer might work correctly with AngularJS but we don't guarantee that.

You'd have to upgrade jQuery.

However, I couldn't find anything about Angular 1.4.