Tagged Questions

0
votes
3answers
51 views

Simple ajax not working, probably syntax error.

window.onload = function(){ testAjax(); } var testAjax = function(){ var request = window.ActiveXObject ? new ActiveXObject("Microsoft.XMLHTTP") : new XMLHttpRequest(); …
4
votes
11answers
346 views

Why a full stop, “.” and not a plus symbol, “+”, for string concatentanation in PHP?

Why did the designers of PHP decide to use a full stop / period / "." as the string concatenation operator rather than the more usual plus symbol "+" ? Is there any advantage to it, or any reason at …
3
votes
1answer
27 views

Associationg vim syntax with file extension

Hi, how do I tell vim to use a certain syntax definition with a new file extension ? Let's say I have files that are some kind of xml, but have a different extension, how do I let vim know that it …
0
votes
2answers
32 views

JQuery clearing an input text field

I have a question regarding clearing an input text field when a different drop down on teh same page is clicked, the value in the input text field should be cleared. Here is my jQuery ftn. The alert …
0
votes
1answer
25 views

Tricky makefile syntax with quotes

Hello, I have the following start on a makefile rule (thanks to help from others), but it doesn't quite work yet: test_svn_version: @if [ $$(svn --version --quiet \ perl -ne …
0
votes
3answers
82 views

More simple math help in bash!

In the same thread as this question, I am giving this another shot and ask SO to help address how I should take care of this problem. I'm writing a bash script which needs to perform the following: …
0
votes
4answers
61 views

What’s wrong with this $(this).attr(”id”).toggle(””);

What is the proper syntax for toggling the this.id object $(this).attr("id").toggle(""); Thanks. Google is surprisingly not helping :(
0
votes
2answers
26 views

Conditional statement operands order

Often I stumble upon following approach of defining conditional statement: if(false === $expr) { ... } I have several questions about this. Is there a point of using constant value (false, …
2
votes
2answers
64 views

C#: Typing variables holding instances of constrained generic classes

I am just starting to get to grips with generics and am (ab)using them to refactor a fairly complex section of my code (I've only been using c# for a little while but am fairly experienced in other …
0
votes
5answers
150 views

Simple C# “new” question - syntax related

Hi, I am just curious how to create new object in the command. (in order to save space and learn it of course). Just to combine the commands together and do not have picturebox abc= new picturebox on …
2
votes
5answers
85 views

Strange syntax of Number methods in JavaScript

Take a look at the following code: Number.prototype.isIn = function () { for (var i = 0, j = arguments.length; i < j; ++i) { if (parseInt(this, 10) === arguments[i]) { return true; …
5
votes
6answers
138 views

F# explicit match vs function syntax

Sorry about the vague title, but part of this question is what these two syntax styles are called: let foo1 x = match x with | 1 -> "one" | _ -> "not one" let foo2 = function …
0
votes
10answers
109 views

Simple math statements in bash in a for loop.

Hi. I'm quite new to bash scripting and usually avoid it all costs but I need to write a bash script to execute some simple things on a remote cluster. I'm having problems with a for loop that does …
5
votes
2answers
101 views

F#: always “unexpected ‘when’ keyword”

The VS2010 Beta 2 F# compiler always complains about my usage of the when keyword, even when using copy-pasted code which is supposed to work, such as either of these snippets. For instance, this is …
2
votes
4answers
74 views

Creating an object of the type a static method is called on in an inheritance chain in C#

I am trying to do something like this in C# public class ParentClass { public static ParentClass GetSomething() { var thing = new // ????? return thing; } } public class ChildClass : …

1 2 3 4 5 58 next
15 30 50 per page