[jQuery] Adsense

2010-02-24 Thread Priya Ram
About Adsense...?



[jQuery] Serverside button click not working with clientside click

2009-11-08 Thread Priya
runjQueryCode($('.dim').css('height', $(document).height());$
('.btnb').click(function(){$('.dim').fadeIn();return false;});$
(window).bind('resize', function(){$('.dim').css('height', $
(window).height());});)


[jQuery] serverside button click event not firing with jquery clientside button click

2009-11-08 Thread Priya
Hi,
The jquery used here is to meake the screen blur when popup
loads..Blur effect is working.But the serverside code of butn1 not
firing.

The code are
Page_Load()
runjQueryCode($('.dim').css('height', $(document).height());$
('.btnb').click(function(){$('.dim').fadeIn();return false;});$
(window).bind('resize', function(){$('.dim').css('height', $
(window).height());});)
end sub

  Sub runjQueryCode(ByVal jsCodetoRun As String)
 ScriptManager.RegisterClientScriptBlock(Me.Page, Page.GetType,
Guid.NewGuid().ToString(), getjQueryCode(jsCodetoRun), True)
End Sub
 Function getjQueryCode(ByVal jsCodetoRun As String) As String
Dim sb As New StringBuilder()
sb.AppendLine($(document).ready(function() {)
sb.AppendLine(jsCodetoRun)
sb.AppendLine( });)
Return sb.ToString
End Function

  Protected Sub butn1_Click(ByVal sender As Object, ByVal e As
System.EventArgs) Handles butn1.Click
lbltest.Text = Button in the page Clicked
 End Sub

.aspx
asp:Button runat=server ID=butn1 Text=show CssClass=btnb/
 div id=dim class=dim
asp:Panel ID=PnldelSCDoc runat=server
CssClass=popupcurve Visible=true
div class=popupcurve_inside
table style=width: 100%;
tr
td align=center
asp:Button ID=btnok Width=75px
runat=server Text=OK /
/td
/tr
/table
/div
/asp:Panel
/div

Please help me


[jQuery] Codebehind not working when background inactive on popup loads

2009-11-05 Thread Priya
Hi,
I put the jquery in my masterpage


[jQuery] codebehind not working when i make background inactive on popup loads

2009-11-05 Thread Priya
Hi,
I make the page dim when a popup loads.The jquery and css are written
in masterpage like this
%@ Master Language=VB CodeFile=ESCCMaster.master.vb
Inherits=ESCCMaster %
 script src=js/jquery-1.3.1.min.js type=text/javascript/script

script type=text/javascript
$(document).ready(function(){

$(#dim).css(height, $(document).height());

$(.alertdim).click(function()
{
$(#dim).fadeIn();
return false;
});
});

$(window).bind(resize, function(){
 $(#dim).css(height, $(window).height());
});


/script

style type=text/css
  #dim
{
position: absolute;
top: 0;
left: 0;
width: 100%;
z-index: 100;
background: url(  'images/dim.png' );
display: none;
text-align: left;
}
 .msgbox
{
position: absolute;
width: 300px;
height: 200px;
z-index: 200;
border: 5px solid #222;
background: #FFF;
top: 50%;
left: 50%;
margin-top: -100px;
margin-left: -150px;
}
.msgbox img
{
border: none;
margin: 5px;
}
.closedim
{
top: 0px;
float: right;
}

/style


[jQuery] $(#datepicker).datepicker is not a function

2009-07-02 Thread Priya

hi i am getting this error when i was trying to use the jquery
datepicker widget.Can you please help me to solve this issue?


[jQuery] facing problem in datepicker

2009-02-26 Thread priya

Hi,

i am tring to build datepicker by using the jquery but i am facing a
problem like $(.date-pick).datePicker is not a function wven i
inlcude all the plugings and javascript files and also css.

please help me

thanks