function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
ashutosh belwalashutosh belwal 

error loading external javascript Libraries in lightning component

I have included some javascript  Libraries and it was working fine but after the summer 16 updates its started showing errors for methods i have created in javascript files. 
by inspect element i have checked its showing data-src attribute rather than src tag
<script data-src="/resource/1465289001000/SLDS103/validationscripts/pageErrors.js"></script>

and This is how i have included it in component
<ltng:require styles="/resource/SLDS103/assets/styles/salesforce-lightning-design-system-ltng.css"                   
    scripts="{!join(',',  '/soap/ajax/34.0/connection.js',  '/soap/ajax/34.0/apex.js',    $Resource.SLDS103 + '/validationscripts/pageErrors.js')}"
                   />


does any one have idea how to resolve this.
Jasveer SinghJasveer Singh
Use this Line in Your Component and first upload the jQuery into static resource
Mark best if it usefull for You
<ltng:require scripts="/resource/JqueryStaticResoureUploadName">

Thanks
Jasveer Singh