Click here to Skip to main content
15,890,123 members
Home / Discussions / JavaScript
   

JavaScript

 
GeneralRe: Passing Element ID to ASP.net Pin
ASPnoob9-Jun-13 1:55
ASPnoob9-Jun-13 1:55 
GeneralRe: Passing Element ID to ASP.net Pin
Dennis E White9-Jun-13 18:45
professionalDennis E White9-Jun-13 18:45 
QuestionAs Simple As I Can Make It - SOLUTION Pin
#realJSOP7-Jun-13 7:02
mve#realJSOP7-Jun-13 7:02 
AnswerRe: As Simple As I Can Make It - SOLUTION Pin
Dennis E White8-Jun-13 19:42
professionalDennis E White8-Jun-13 19:42 
QuestionCheckbox checked Java script and c# Pin
sujeet3215-Jun-13 22:43
sujeet3215-Jun-13 22:43 
AnswerRe: Checkbox checked Java script and c# Pin
Dennis E White6-Jun-13 12:01
professionalDennis E White6-Jun-13 12:01 
Questionproblem with anonymus func with parameters Pin
imbaro2-Jun-13 21:27
imbaro2-Jun-13 21:27 
AnswerRe: problem with anonymus func with parameters Pin
dusty_dex3-Jun-13 5:42
dusty_dex3-Jun-13 5:42 
So where is func defined? where is Z defined?

What is your code supposed to do exactly?

here's some code. Smile | :)

JavaScript
function add(a,b)
{
    alert(a + b);
}

function mult(a,b)
{
    alert(a * b);
}

var o = { func : function(f, x,y) { return f(x,y); }};

function A(Z)
{
   for(var i = 0;i < Z ; i++)
   {
      for(var j = 0;j < Z ; j++)
      {
         o.func(add, i,j); // replace add with mult
      }
   }
}
.


QuestionRe: problem with anonymus func with parameters Pin
ZurdoDev3-Jun-13 7:29
professionalZurdoDev3-Jun-13 7:29 
AnswerRe: problem with anonymus func with parameters Pin
#realJSOP6-Jun-13 4:35
mve#realJSOP6-Jun-13 4:35 
Questionhow to toggle between textbox and textarea by jquery Pin
mhd.sbt30-May-13 8:21
mhd.sbt30-May-13 8:21 
QuestionAs simple as I can make it Pin
#realJSOP30-May-13 8:03
mve#realJSOP30-May-13 8:03 
AnswerRe: As simple as I can make it Pin
Manfred Rudolf Bihy30-May-13 8:24
professionalManfred Rudolf Bihy30-May-13 8:24 
GeneralRe: As simple as I can make it Pin
#realJSOP30-May-13 11:53
mve#realJSOP30-May-13 11:53 
AnswerRe: As simple as I can make it Pin
Richard Deeming30-May-13 8:34
mveRichard Deeming30-May-13 8:34 
GeneralRe: As simple as I can make it Pin
Manfred Rudolf Bihy30-May-13 8:42
professionalManfred Rudolf Bihy30-May-13 8:42 
GeneralRe: As simple as I can make it Pin
Richard Deeming30-May-13 8:46
mveRichard Deeming30-May-13 8:46 
GeneralRe: As simple as I can make it Pin
Manfred Rudolf Bihy30-May-13 8:49
professionalManfred Rudolf Bihy30-May-13 8:49 
GeneralRe: As simple as I can make it Pin
Richard Deeming30-May-13 8:51
mveRichard Deeming30-May-13 8:51 
GeneralRe: As simple as I can make it Pin
Manfred Rudolf Bihy30-May-13 8:53
professionalManfred Rudolf Bihy30-May-13 8:53 
GeneralRe: As simple as I can make it Pin
#realJSOP30-May-13 11:54
mve#realJSOP30-May-13 11:54 
GeneralRe: As simple as I can make it Pin
Manfred Rudolf Bihy31-May-13 1:35
professionalManfred Rudolf Bihy31-May-13 1:35 
GeneralRe: As simple as I can make it Pin
#realJSOP1-Jun-13 2:24
mve#realJSOP1-Jun-13 2:24 
GeneralRe: As simple as I can make it Pin
Richard Deeming3-Jun-13 2:00
mveRichard Deeming3-Jun-13 2:00 
GeneralRe: As simple as I can make it Pin
#realJSOP5-Jun-13 8:56
mve#realJSOP5-Jun-13 8:56 

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.