I'm trying to do dreamweaver extension, and need to add jQuery library in to final file (in to that file, what is generated by extension).
How i can add jQuery (.js, .css) files so they will be uploaded in to user site automatically, when he use extension.
Thank you in advance
Can you just put links in the page to directly access the files via CDN (e.g. http://code.jquery.com/jquery-1.7.2.min.js). That way, the user doesn't need to worry about hosting the files on their site, and you don't need to worry about uploading them.
Take alook at this doc:
http://docs.jquery.com/Downloading_jQuery#CDN_Hosted_jQuery
HTH,
Randy
Sorry about my bad english ![]()
What i'm tring to do is DW extension.
When DW developer use it, then it act so:
DW developer have defined local site in computer and DW. Sample http://localhost/mysite/
He make new blank html file in DW
He use my extension, what will generate new code in to blank file:
Sample in to head tag:
<script src="http://code.jquery.com/jquery-1.7.2.min.js" type="text/javascript"></script>
<script src="my_custom.js" type="text/javascript"></script>
<link href="my_custom.css" rel="stylesheet" type="text/css" />
+
some HTML code In to body.
Problem is, files like "my_custom.js" and "my_custom.css" have to be uploaded in to development site folder (http://localhost/mysite/)
Later. deweloper able to upload all files in to publik server, but thats not my problem.
i'm tring to find out how to add custom files in to extension and upload them in to development site when developer use that extension.
If there exsits some tutorial or documentation about that?
I think its possible, i seen some extensions work that way, also Adobe spry tools do that.
Sample: when you add spry accordion, then code like:
<script src="SpryAssets/SpryAccordion.js" type="text/javascript"></script>
<link href="SpryAssets/SpryAccordion.css" rel="stylesheet" type="text/css" />
generated in to head tag and these files uploaded automatically in to development site
http://localhost/mysite/SpryAssets/SpryAccordion.js
Thank You in advance
North America
Europe, Middle East and Africa
Asia Pacific