[jQuery] can anchor tag be used in jquery to define areas

2010-01-11 Thread Oliur
What I mean is, in normal HTML if you have a link to go to the top of the page you write a name=top id=top/a . .. a href=test.html#topgo top/a When you type in your browser http://localhost/lab2/class2.html#top it takes you to the top of the page. This way you can also go to the specific

[jQuery] Re: can anchor tag be used in jquery to define areas

2010-01-11 Thread Oliur
, or you can work with the href property to reconstruct it if the hash fragment  #top isn't there. be easier to help with better defintiion of objective Oliur wrote:What I mean is, in normal HTML if you have a link to go to the top of the page you write a name=top id=top/a . .. a href

[jQuery] how to do some animation when the page loads?

2010-01-09 Thread Oliur
when the DOM is ready you can write $(document).ready(function(){ $(#divname).hide(); }); Say now, you want to try and do some animation done by default, (in the below example I have done some animation only when the user do mouse over, how can i do that by default as in when the page loads)

[jQuery] Re: how to do some animation when the page loads?

2010-01-09 Thread Oliur
yes it did, thanks a lot :) It looks so simple :)

[jQuery] Table works but not div within divs. Does jquery has an issue with divs inside divs?

2010-01-05 Thread Oliur
Hi, I am playing with these JQuery tabs (http://www.queness.com/post/106/ jquery-tabbed-interfacetabbed-structure-menu-tutorial) and trying to customize it. I want to be able to place different images or text and display them when user clicks on these tabs, make sense? This is a working version