Click here to Skip to main content
15,897,187 members
Home / Discussions / C#
   

C#

 
Questionreporting Pin
abdallah ramdan salem abdo6-Apr-13 9:34
abdallah ramdan salem abdo6-Apr-13 9:34 
AnswerRe: reporting Pin
Sandeep Mewara6-Apr-13 22:46
mveSandeep Mewara6-Apr-13 22:46 
GeneralRe: reporting Pin
abdallah ramdan salem abdo16-Apr-13 9:59
abdallah ramdan salem abdo16-Apr-13 9:59 
AnswerRe: reporting Pin
Sandeep Mewara16-Apr-13 19:40
mveSandeep Mewara16-Apr-13 19:40 
GeneralRe: reporting Pin
abdallah ramdan salem abdo17-Apr-13 4:26
abdallah ramdan salem abdo17-Apr-13 4:26 
GeneralRe: reporting Pin
abdallah ramdan salem abdo16-Apr-13 10:01
abdallah ramdan salem abdo16-Apr-13 10:01 
AnswerRe: reporting Pin
Mycroft Holmes6-Apr-13 23:23
professionalMycroft Holmes6-Apr-13 23:23 
AnswerRe: reporting Pin
Abhinav S7-Apr-13 18:17
Abhinav S7-Apr-13 18:17 
Questionfor c# dot net help Pin
Member 99691976-Apr-13 4:11
Member 99691976-Apr-13 4:11 
QuestionRe: for c# dot net help Pin
Kenneth Haugland6-Apr-13 4:13
mvaKenneth Haugland6-Apr-13 4:13 
Questionhow other website xml file use in our website Pin
anghan226-Apr-13 0:43
anghan226-Apr-13 0:43 
QuestionRe: how other website xml file use in our website Pin
Richard MacCutchan6-Apr-13 1:49
mveRichard MacCutchan6-Apr-13 1:49 
QuestionRe: how other website xml file use in our website Pin
AmitGajjar6-Apr-13 2:28
professionalAmitGajjar6-Apr-13 2:28 
AnswerRe: how other website xml file use in our website Pin
anghan226-Apr-13 2:36
anghan226-Apr-13 2:36 
AnswerRe: how other website xml file use in our website Pin
AmitGajjar6-Apr-13 2:52
professionalAmitGajjar6-Apr-13 2:52 
GeneralRe: how other website xml file use in our website Pin
anghan226-Apr-13 17:39
anghan226-Apr-13 17:39 
GeneralRe: how other website xml file use in our website Pin
Pete O'Hanlon6-Apr-13 22:30
mvePete O'Hanlon6-Apr-13 22:30 
GeneralRe: how other website xml file use in our website Pin
AmitGajjar7-Apr-13 16:37
professionalAmitGajjar7-Apr-13 16:37 
AnswerRe: how other website xml file use in our website Pin
Kenneth Haugland6-Apr-13 2:54
mvaKenneth Haugland6-Apr-13 2:54 
GeneralRe: how other website xml file use in our website Pin
AmitGajjar7-Apr-13 16:40
professionalAmitGajjar7-Apr-13 16:40 
QuestionHow to show a label clicking on another in windows form Pin
Member 94875785-Apr-13 23:35
Member 94875785-Apr-13 23:35 
AnswerRe: How to show a label clicking on another in windows form Pin
David C# Hobbyist.6-Apr-13 0:48
professionalDavid C# Hobbyist.6-Apr-13 0:48 
QuestionHow to deploy windows application compatible for 32bit and 64 bit Pin
yshsrinivasan5-Apr-13 21:52
yshsrinivasan5-Apr-13 21:52 
AnswerRe: How to deploy windows application compatible for 32bit and 64 bit Pin
Abhinav S5-Apr-13 22:16
Abhinav S5-Apr-13 22:16 
Questionhow to toggle anchor tag text in jquery Pin
ankitsrist5-Apr-13 19:32
ankitsrist5-Apr-13 19:32 
hello,
i want to toggle anchor tag text, i have an anchor tag within div, when user clicks on reply, comment box get open and text should change into close and vice versa but problem is that after text getting change to close, text remain become close nd toggle between show nd hide works clearly...
C#
<a id="reply" href="#">reply</a>
   <div id="replyuser" style=" position:absolute;"><asp:TextBox ID="txt1" CssClass="txtbox" TextMode="MultiLine" runat="server"></asp:TextBox><br /><asp:Button ID="btnreply" Text="send" runat="server" CssClass="btn" /></div>

jquery is as follows
C#
$(document).ready(function() {
           $("#replyuser").hide();

           $("#reply").click(function() {

               $("#replyuser").toggle(function() {

             $("#reply").text("close");
               });

           });
       });

WTF | :WTF:

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.