Skip to content

Instantly share code, notes, and snippets.

View antocap's full-sized avatar

Antonio Capani antocap

View GitHub Profile
<html>
<head>
<script src="http://cdn.app-framework-software.intel.com/2.0/appframework.min.js" type="text/javascript"></script>
</head>
<body>
<div id="x"/>
<div id="y"/>
<script>
console.log("Bug (selection of two ids does not work): "+$('#x,#y').length);
console.log("WorkAround 1 (space after comma): "+$('#x, #y').length);