Reputation: 172
I wonder if there is any website application on where i can test my css, javascript and html pages in IE 6.0 - 8.0, Opera, Firefox, Chrome, Safari to see them live.
Upvotes: 0
Views: 217
Reputation: 11847
If you decide to go with testling now there is a tool that allows you to get started with it as quickly as possible.
It's testlingify which creates testling hooks on your repo on github and adds a testling browser config to your package.json.
Therefore to get started with testling in your project all you need to do is:
npm install -g testlingify
Then from inside your local github repository:
testlingify
Note: When you run it for the first time, you'll have to edit the generated config in order to include you github username and password.
Test the github hook via:
testlingify test
Print the testling badge to include in your readme via:
testlingify badge
Upvotes: 0
Reputation: 6029
Cross browser teting of web application is possible in Browserling. You can test your javascripts using Testling.
Upvotes: 5
Reputation: 387
You can try spoon for this and you can test you sites how they behave on various browsers without having to install all the browsers http://spoon.net/Apps/
Upvotes: 0
Reputation: 15593
General problem are occur in IE6.0 - 8.0 and safari so you should test in these browsers.
Upvotes: 0