How do I store Coded CSS, Html within the application?

joseph raphael

Well-Known Member
How do I store Coded CSS, Html within the application? :(
You have 50 Web pages.

You can't store them, you have to embed them in <style></style> and <html></html> tags in the code section of the app.
AppYet doesn't offer local files support (only jQuery).
 

kaaed

New Member
yes, it's already embedded
Is this the best way to use jQuery?
for example:

<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/[version]/jquery.mobile-[version].min.css" />
<script src="http://code.jquery.com/jquery-[version].min.js"></script>
<script src="http://code.jquery.com/mobile/[version]/jquery.mobile-[version].min.js"></script>
</head>

<body>
...content goes here...
</body>
</html>
 
Top