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
SAHG-SFDCSAHG-SFDC 

Refer Jquery in static Resource

Hi I have the below code, I want to refer it in static resource , Can some one guide the steps?

Do I open the code copy in a document and refer that document?
<apex:includescript value="//code.jquery.com/jquery-1.11.1.min.js" / >
        <apex:includescript value="//cdn.datatables.net/1.10.4/js/jquery.dataTables.min.js" />
        <apex:stylesheet value="//cdn.datatables.net/1.10.4/css/jquery.dataTables.css" />

Advance thanks
Best Answer chosen by SAHG-SFDC
sfdcMonkey.comsfdcMonkey.com
hi SHAG
you can download these 3 files and upload as static resource and use it in vf page
go to below links
http://code.jquery.com/jquery-1.11.1.min.js
http://cdn.datatables.net/1.10.4/js/jquery.dataTables.min.js
http://cdn.datatables.net/1.10.4/css/jquery.dataTables.css

Right click on screen and select Save page as or Press ctr + s and save js/css files in your system.
after save ,upload these file as static resource and use it.
i hop it helps you
Mark it best answer if it helps you so it make proper solution for others
Thanks

 

All Answers

sfdcMonkey.comsfdcMonkey.com
hi SHAG
you can download these 3 files and upload as static resource and use it in vf page
go to below links
http://code.jquery.com/jquery-1.11.1.min.js
http://cdn.datatables.net/1.10.4/js/jquery.dataTables.min.js
http://cdn.datatables.net/1.10.4/css/jquery.dataTables.css

Right click on screen and select Save page as or Press ctr + s and save js/css files in your system.
after save ,upload these file as static resource and use it.
i hop it helps you
Mark it best answer if it helps you so it make proper solution for others
Thanks

 
This was selected as the best answer
SAHG-SFDCSAHG-SFDC
Hi Piyush,

Thanks for replying, Do I save it with any specific name? and while referring them on the page , How do I refer ? I think Resouce is uesed?

 
sfdcMonkey.comsfdcMonkey.com
save with any name that you want and refer it on vf page by $Resources globel variable
go to below link for know more about it
https://developer.salesforce.com/docs/atlas.en-us.pages.meta/pages/pages_resources_reference.htm
let me inform if it helps you
Thanks
SAHG-SFDCSAHG-SFDC
I did all the steps,  It seems to be working.However, I lost the formatting of the page
SAHG-SFDCSAHG-SFDC
Is there a way to restore the look and feel of the page?