I`m new to jQuery and new to javascript ... but I have programming background ...
and the following javascript ...
- function hideInfo()
- {
- $('#info').each(function()
- {
- $(this).hide();
- });
- }
all I wanna do here is when page loads hide all info div`s ... this code only hide`s the first one ...