I was trying explore different possibilities of CSS3 (next version of CSS) features targeted to beautification of presentation. I have build a little card sorting app(just basic stuffs) using jQuery and few CSS3 stuffs…
View App in Quesb Labs
NB: you have download the attached file, unzip it and open the file cards.html. Check in [...]
Archives for April 2010
Card sorting app
Useful tips for writing Javascript
Always put all you JavaScript code within the function which checks if the page is fully loaded or not.
below is jQuery snippet…
$(document).ready(function(){
//Put your JavaScript here.
});
The reason for doing this is that JavaScript is client side language. And it makes no sense to run it unless the client code (HTML) is loaded completely.
Also browser is an [...]
Why use CSS layout not Table
In my recent interaction with my project’s developer friends I felt many of us really don’t buy the idea why the heck the UI team is jumping up and down and so against table based layout !!!
Of course table based layout is:
Easier to code
Easier to understand
User don’t really care it’s table or DIV… browsers anyway [...]
Posts