html - Where can I host a jQuery slider/widget and iframe it? -


i have jquery slideshow. files hosted dropbox. when put html code online (fetching css , js files) works fine.

the problem website want work on it's jimdo website , jimdo not support jquery. hope iframe jquery slideshow. host widget?

not files, widget itself...

here's html code jquery slideshow / widget:

<!doctype html> <html lang="en">     <head>         <meta charset="utf-8">         <title>responsiveslides.js &middot; responsive jquery slideshow</title>         <link rel="stylesheet" href="https://dl.dropbox.com/u/12608183/responsiveslides.js-master/responsiveslides.css">         <meta name="viewport" content="width=device-width,initial-scale=1">         <link rel="stylesheet" href="https://dl.dropbox.com/u/12608183/responsiveslides.js-master/demo/demo.css">         <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>         <script src="https://dl.dropbox.com/u/12608183/responsiveslides.js-master/responsiveslides.min.js"></script>         <script>             // can use "$(window).load(function() {"             $(function () {                 // slideshow 1                 $("#slider1").responsiveslides({                     maxwidth: 800,                     speed: 800                 });             });         </script>     </head>     <body>         <div id="wrapper">             <!-- slideshow 1 -->             <ul class="rslides" id="slider1">                 <li><img src="https://encrypted-tbn3.gstatic.com/images?q=tbn:and9gctplsucpmphkn_p3jfkd875c_wsd5e_xy5ojchysvlz6s24820" alt=""></li>                 <li><img src="http://upload.wikimedia.org/wikipedia/commons/7/7c/aspect_ratio_16_9_example.jpg" alt=""></li>                 <li><img src="https://encrypted-tbn1.gstatic.com/images?q=tbn:and9gctnz-gglghf9by7p1yu-qcfulv9xh9psowfderpmj3ottywfjjw" alt=""></li>             </ul>         </div>     </body> </html> 

use pastehtml , use link show in iframe


Comments

Popular posts from this blog

monitor web browser programmatically in Android? -

Shrink a YouTube video to responsive width -

wpf - PdfWriter.GetInstance throws System.NullReferenceException -