I'm developing application in tizen IDE now.
But, I found css or js problem.
When I set css in ".css" , my app didn't apply it.
But when I set css using "style tag" into html object, it was working.
Js has also similar problem.
$("test").click(function() {
blah blah blah
});
do not working !
but "onClick=test()" is working
(For sure, I loaded js and css using <link> and <script> tag into <head>)
Why is it happening ?
Thanks,
Jenny