Pratim
Pratim

Reputation: 75

is there a provisioning for inspecting a winJs html file

winJs application are simple html Applications. Xaml c# provides an interface view where we can look at the design drag drop elements.

Is there a Way to Debug a winJS application like firebug or inspect element in Google Chrome. running every time in the simulator to check whether code is working or not has become a tedious Job. Any alternative please suggest.

Upvotes: 2

Views: 149

Answers (1)

Anobik
Anobik

Reputation: 4899

Yes there's a kind of firebug as you mentioned But it is also known as Dom Explorer

The DOM Explorer is available only while in debug mode.

Make sure you have the script debugger selected, start debugging (F5), then go to Debug -> Windows -> DOM Explorer.

Here's a link to study the details

Dom Explorer from MSDN

Upvotes: 2

Related Questions