forked from bitovi/jquerypp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathyql.html
More file actions
27 lines (26 loc) · 852 Bytes
/
yql.html
File metadata and controls
27 lines (26 loc) · 852 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<title>associations</title>
<style type='text/css'>
body {font-family: verdana}
.error {border: solid 1px red;}
.error_text { color: red; font-size: 10px;}
td {padding: 3px;}
</style>
</head>
<body>
<script type='text/javascript'
src='../../../../steal/steal.js?steal[app]=jquerypp/model/service/yql&steal[env]=development'
package='main.js'
compress='false'>
</script>
<script type='text/javascript'>
var yahooImages = $.Model.service.yql({from: "search.images"});
yahooImages.findAll({where: "query='dog'"}, function(data){
console.log(data)
})
</script>
</body>
</html>