1,093 reputation
38
bio website
location
age
visits member for 1 year, 2 months
seen 9 mins ago
stats profile views 51

I'm a web developer and also iOS programmer


1d
comment Table does not enter in number of sections and in number of rows
self.tableView.delegate = self; self.tableView.dataSource = self;
2d
comment Beginner IOS- Stuck in Using SwipeGesture
See this answer: stackoverflow.com/questions/8254426/…
Jun
13
comment javascript, some function meaning?
Thanks for pointing me to my mistake. :)
Jun
13
revised javascript, some function meaning?
added 119 characters in body
Jun
13
comment javascript, some function meaning?
You're right. typeof obj === "function" but if you instantiate obj to variable: var s = new obj(), typeof s === "object". Then 'obj' acts like class in oop languages.
Jun
13
comment javascript, some function meaning?
w3fools.com - This website is offline
Jun
13
comment javascript, some function meaning?
The first one is full operated object, with properties and methods.
Jun
13
comment javascript, some function meaning?
Javascript is object based language. Each function is an object. "Everything" in JavaScript is an Object w3schools.com/js/js_obj_intro.asp, functions as object constructors en.wikipedia.org/wiki/JavaScript
Jun
13
comment Confusion with NSUserDefaults
@Alladinian you should put this comment in answer
Jun
13
answered javascript, some function meaning?
Jun
13
comment Ajax results in div doesn't work
1. eval is a bad practice in javascript. 2. In this case data is not sent but received in properly formatted JSON format.
Jun
13
answered Ajax results in div doesn't work
Jun
13
comment Loading a UIWebview when pressing a UIButton
And make sure you connected self.myWebView in IBOutlet.
Jun
12
comment Data not being displayed in kendo UI grid
There is something wrong with your schema model, according to this example: docs.kendoui.com/api/web/grid
Jun
12
comment Data not being displayed in kendo UI grid
Have you tried to fill all the fields in columns? I mean not only data
Jun
12
answered Key to hit “Replace All” button in Xcode?
Jun
12
answered Loading js dynamically not reflecting
Jun
12
comment How to get Text of Div
Still it will return text within span element
Jun
12
comment How to get Text of Div
It does the same as $("div").text()
Jun
12
comment onClick text change
What error do you see in the console?