Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

jQuery and Windows 8 JavaScript Metro Style Apps

Tags:

Can jQuery be used in Windows 8 Metro-style apps developed using the JavaScript API? I'm looking at the samples, and there's a lot of standard DOM manipulation like document.getElementById, addEventListener, etc. I'd like to use jQuery for productivity.

like image 771
pfeilbr Avatar asked Sep 14 '11 17:09

pfeilbr


1 Answers

The $ is not magic. jQuery is just a javascript library. It should run fine.

The only thing that might not work are cssHooks which won't take into account any 'quirks' of their environment.

So yes, it will work, if you trust Microsoft to produce an environment that follows the HTML/CSS/JS specifications.

Do you feel lucky?

like image 65
Andrew Avatar answered Sep 20 '22 00:09

Andrew