Tagged Questions
2
votes
1answer
32 views
Is this a valid way to assign properties to an object?
Is this a valid way to assign properties to an object? I have an if/ else statement and I want it to determine what the properties of p and i are.
function game(){
var self = this;
...
-2
votes
1answer
35 views
Can't reference current div
I am having a little problem with "this"...I wanna make the start() works for every div. But like that is returning HTML div obj, you know...
function init(){
box = [];
box = ...
0
votes
1answer
254 views
JavaScript window.open _self issues
I have some old code that I want to open into the same window
if(sgame=='BIN') {
...
5
votes
2answers
203 views
Javascript: Self and This
Can anyone explain why do I get different values of self and this? Where self is a reference to this.
function Parent(){
var self = this;
this.func = function(){
// self.a is undefined
...
1
vote
1answer
103 views
Chrome browser ignores var self = this;
I'm writing some jQuery javascript code and was debugging an issue in Google Chrome (latest stable 24 on Mac OS X 10.7 Lion) when I found that
MyWidget = Widget.extend({
_item_id : undefined,
...
0
votes
1answer
99 views
Get Page Title from Loaded WebView
I'm trying to get to change the UILabel pageTitle to whatever the title of the page displayed on the UIWebView is. I'm returning no warnings or errors, it just simply isn't changing.
ViewController.h
...
2
votes
1answer
479 views
Using Jquery $(this) in Meteor
How can I use the this function in meteor? for example, I want to be able to click on any given element and find out what its class is. Also, how can I get information on the item that I click on ...
1
vote
2answers
105 views
Static self member in javascript [duplicate]
Possible Duplicate:
Static variables in JavaScript
How can i make a static encapsulation with self members in javascript?
such as in php:
class bar{
static public $foo;
static ...
2
votes
1answer
366 views
javascript child window redirecting main window
main.php has
<a href="redirect.php" target="_blank">open new window</a>
then redirect.php has
top.top.location.href='http://xx.com/index.html';
When I click the link open new window, ...
1
vote
2answers
81 views
Access previous values within object during declaration [duplicate]
Possible Duplicate:
Self-references in object literal declarations
var obj = {
value: 10,
value2: value + 2
};
How can I do the above? (Assuming it's even possible)
I am using a ...
0
votes
2answers
278 views
jQuery: Add function self to array?
Given a function, like so:
var allev = new Array();
function events(index) {
allev[index] = $(this); // doesn't work
}
Is there any way to get this to work in the way above, or am I always ...
1
vote
2answers
120 views
How to write a demo page that will provide the code of itself?
Suppose you've made a demo(a webpage) of your product, you want to make a page to display the demo, and in the bottom of the page, there is a button by click which you can display the source code of ...
0
votes
1answer
47 views
How to copy a function so that i can use “this” in an onLoad function. AKA this.onload?
When an object loads, I want it to move across the page. The movement is not the hard part. I am using this code (more or less) for that.
var x = 5; //Starting Location - left
var y = 5; //Starting ...
3
votes
2answers
687 views
Can a JavaScript function return itself?
Can I write a function that returns iteself?
I was reading some description on closures - see Example 6 - where a function was returning a function, so you could call func()(); as valid JavaScript.
...
1
vote
3answers
427 views
How to change one keyword's color in Geany?
I use Geany to edit JavaScript files. I have made it highlight "self" as a keyword symply by adding it to filetypes.javascript file.
But i need to make it highlighth "self" word in another color. How ...
3
votes
2answers
425 views
Javascript use explicit self/window objects to improve performance
I read on MSDN that to improve scripting efficiency, you can use self to make implicit window references explicit.
Do you know if this is true? Does this basically mean that for instance calling ...
7
votes
4answers
3k views
self property in javascript?
I read here that "self Refers to the current window or form".
Self does not seem to refer to the current form in this case:
<form><input type="text" onkeyup="alert(self.foo.value)" ...
2
votes
1answer
1k views
javascript new self invoking function
Hey, I've got a question about self invoking functions in javascript.
What I'm doing is something similar to the following
myNamespace = {}; //namespace for holding any objects/functions
...
0
votes
0answers
428 views
Self host WCF (Windows Communication Foundation) Ajax services
I am having trouble to understand how to expose the WCF services through Javascript. Here are what I found after days of research:
Exposing WCF services through Javascript but not self host: ...