Hey Nitesh,
I'm learning myself too, here's what I'd say:
Do you currently lay out pages with div's?
Got <div id="foo">... ?
or even better
<div id="foo" class="bar"> ... ?
then you're set - Jquery operates on your CSS definitions.
#foo refers to a div called foo
.bar refers to a css class called bar
So this says: select the div (#) named myDiv and apply the css
properties to it
$("#myDiv").css("border","3px solid red");
hope this helps
nut
<<<<<<<<
Include the jquery files in u <head>...
<script type="text/javascript" src="/JQuery/jquery-1.3.2.min.js"></
script>
Then add your jquery code
Start with an empty jquery (I call it container) block:
<script type="text/javascript">
$(document).ready(function(){
<<< YOUR CODE GOES HERE >>>>
});
</script>
>>>>>>>>>>>>>>>>>>>>>>>
On Oct 15, 10:56 am, nitesh <[email protected]> wrote:
> Hi,
>
> Im a completely new to Jquery. Can I start it instantly or I need to
> first attain certain level of expertise in Html/CSS/JS
> Below is my current expirience with above 3:
>
> . HTML/CSS: Basic knowledge
> . Javascript/DOM: No knowledge at all
>
> Hence, let me know the roadmap to learn Jquery efficiently ASAP.
>
> 10x
> Nitesh