This is one of he sites I made that I like best everything except for the jQuery and jQuery UI library (which I use Google to host) is hand coded.
My favorite part part is the itinerary planner, which pulls from a MySQL database. Well, here, take a look
[div] //this is the events list
{
[ul]//just a container for the links
{
[a]
[a]//these are the headers and the links for the tabbed conatiners, I'm using a #target internal link to make them visible when it's clicked
[a]
}
[ul id='events']//this is populated by list items that are of the type EVENT in my database
{
[li]//every list item has the non-standard attribute PRICE, which means I can manipulate it much easier than through a Javascript object
}
So it's just a matter of getting the balls to use non standard elements.{
[ul]//just a container for the links
{
[a]
[a]//these are the headers and the links for the tabbed conatiners, I'm using a #target internal link to make them visible when it's clicked
[a]
}
[ul id='events']//this is populated by list items that are of the type EVENT in my database
{
[li]//every list item has the non-standard attribute PRICE, which means I can manipulate it much easier than through a Javascript object
}
[ul id='restaurant']//this is populated by list items that are of the type RESTAURANT in my database
{
[li]
}
[ul id='other']//this is populated by list items that are of the type OTHER in my database
{
[li]
}
}The other thing I really like is the full screen background. I have to thank my friends at CSS Tricks for this one, on the grounds that without them I would have had no idea bout the Internet Explorer filter that allows it to really work.
No comments:
Post a Comment