UNPKG

lettuce

Version:

Lettuce JS, Mini Mobile Framework for Romantic with DSL.

19 lines (17 loc) 575 B
<!DOCTYPE html> <html> <head> <title>Load jQuery if Zepto is not supported</title> </head> <body> <h1>Load jQuery if Zepto is not supported</h1> </body> <script>document.write('<script src='+('__proto__' in {} ? '../dist/zepto' : 'https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery')+'.js><\/script>')</script> <script> $('body').append('<p>Hello from '+('Zepto' in window ? 'Zepto' : 'jQuery')+'!</p>') $('script').each(function(index,script){ if (script.src) $('<p>&lt;script src="'+script.src+'"&gt;</p>').appendTo('body') }) </script> </html>