Click here to Skip to main content
15,887,596 members
Home / Discussions / JavaScript
   

JavaScript

 
GeneralRe: get the checkbox index or table row index with javascript Pin
enhzflep30-Aug-12 23:18
enhzflep30-Aug-12 23:18 
AnswerRe: get the checkbox index or table row index with javascript Pin
enhzflep30-Aug-12 23:24
enhzflep30-Aug-12 23:24 
GeneralRe: get the checkbox index or table row index with javascript Pin
kmoorevs28-Sep-12 6:07
kmoorevs28-Sep-12 6:07 
Questionuse JQuery in C# code Pin
GSingh-Developer29-Aug-12 7:26
GSingh-Developer29-Aug-12 7:26 
AnswerRe: use JQuery in C# code Pin
jkirkerx29-Aug-12 8:01
professionaljkirkerx29-Aug-12 8:01 
GeneralRe: use JQuery in C# code Pin
GSingh-Developer29-Aug-12 8:26
GSingh-Developer29-Aug-12 8:26 
GeneralRe: use JQuery in C# code Pin
jkirkerx29-Aug-12 9:49
professionaljkirkerx29-Aug-12 9:49 
AnswerRe: use JQuery in C# code Pin
BobJanova30-Aug-12 0:18
BobJanova30-Aug-12 0:18 
I don't think you understand how ASP.net works. This isn't entirely your fault because ASP.net does its best to hide the client/server nature of websites.

Back end (C#) code is executed on the server. Its purpose is to generate markup which is sent to the browser, which can include scripts and links to scripts (e.g. jQuery). Once a request has been handled and markup sent back to the browser, your back end code is not running any more.

jQuery (like other JavaScript code) is run in the browser, and allows you to modify what the client sees or does. Anything interactive that happens in the browser is done with JS.

The only ways to communicate between them are HTTP requests, either through loading a new page with an <a> or <form action=...> tag, or via an AJAX request.

Animation is a client side task and therefore it will always be done with JavaScript. There is simply no (sane) way to get back end code involved in that code cycle, because the animation is done in the browser and the server is not involved.
GeneralRe: use JQuery in C# code Pin
jkirkerx30-Aug-12 7:34
professionaljkirkerx30-Aug-12 7:34 
SuggestionText editor Pin
Nolee K28-Aug-12 2:57
Nolee K28-Aug-12 2:57 
GeneralRe: Text editor Pin
Pete O'Hanlon28-Aug-12 3:06
mvePete O'Hanlon28-Aug-12 3:06 
GeneralRe: Text editor Pin
BobJanova28-Aug-12 3:31
BobJanova28-Aug-12 3:31 
AnswerRe: Text editor Pin
Tadit Dash (ତଡିତ୍ କୁମାର ଦାଶ)28-Aug-12 3:56
protectorTadit Dash (ତଡିତ୍ କୁମାର ଦାଶ)28-Aug-12 3:56 
GeneralRe: Text editor Pin
R. Giskard Reventlov28-Aug-12 9:41
R. Giskard Reventlov28-Aug-12 9:41 
AnswerRe: Text editor Pin
Joan M28-Aug-12 10:00
professionalJoan M28-Aug-12 10:00 
Questionautomatically checking a check box in a website. Pin
saadmechiche26-Aug-12 22:20
saadmechiche26-Aug-12 22:20 
AnswerRe: automatically checking a check box in a website. Pin
Shameel28-Aug-12 3:35
professionalShameel28-Aug-12 3:35 
Questionmy function really slows down after 4 times Pin
jkirkerx26-Aug-12 16:34
professionaljkirkerx26-Aug-12 16:34 
AnswerRe: my function really slows down after 4 times Pin
jkirkerx28-Aug-12 8:55
professionaljkirkerx28-Aug-12 8:55 
Questiontrouble using each in json array Pin
jkirkerx23-Aug-12 12:56
professionaljkirkerx23-Aug-12 12:56 
AnswerRe: trouble using each in json array Pin
BobJanova23-Aug-12 22:47
BobJanova23-Aug-12 22:47 
GeneralRe: trouble using each in json array Pin
jkirkerx24-Aug-12 6:32
professionaljkirkerx24-Aug-12 6:32 
QuestionHow to calculate difference between two date Pin
Robymon21-Aug-12 23:11
Robymon21-Aug-12 23:11 
AnswerRe: How to calculate difference between two date Pin
BobJanova22-Aug-12 0:33
BobJanova22-Aug-12 0:33 
QuestionHow to add Days in variable Date Pin
Robymon21-Aug-12 21:40
Robymon21-Aug-12 21:40 

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.