Inline Code Example Here
i have a page defalt.aspx
<body>
<div id="content"></div>
</body>
and i have genereated dynamic div through jquery reference to id "content"
like
#(document).ready(function(){
var a=$("#content");
$(a).append("<div class="scrollbar"><%--some content here-----%></div>")
});
this above jquery work fine and seen in inside the "content" when i run the default.aspx
but i have make a another jquery funtion on another jquery file
where i have define the "scrollbar" funtion
the problem is that the jquery function "scrollbar" is not call in the "content".
any one who can solve the problem......................!