101 reputation
26
bio website
location
age
visits member for 10 months
seen yesterday
stats profile views 11

Apr
10
awarded  Enthusiast
Apr
1
comment How does AngularJS internally catch events like 'onclick', 'onchange'?
Well, AngularJS is still javascript with the DOM right ? So angular do attach some event listeners using the DOM, i don't know angular, but i suppose event are attached to the document element and they are using event bubbling to filter which target will receive the DOM event.
Apr
1
comment Giving custom classes to each TD for styling - Datatables & jQuery
You should be able to target every first cell of every row, every 3rd cell of every row, to target columns. See CSS pseudo classes : developer.mozilla.org/en-US/docs/CSS/:nth-child
Apr
1
answered How does AngularJS internally catch events like 'onclick', 'onchange'?
Mar
31
answered css/html submenu displaying behind rather than on top of other page content
Mar
31
awarded  Commentator
Mar
31
comment HTML <br /> tag breaks display: block
i don't get what you want ? How exactly do you want to position the Hello world text ?
Mar
31
answered UIWebView, mediaPlaybackRequiresUserAction
Mar
25
comment mraid undefined
Your code is wrong, you expect mraig.getState to return 'ready', but this state do not exist. It's a common error on many MRAID sample codes, indeed when mraid is ready, the mraid.getState return 'default'.
Feb
25
comment jQuery not loading when user is logged in
don't you have any javascript errors or more informations related to your issue ?
Jan
12
awarded  Notable Question
Dec
26
comment Store retrieved data from indexed DB to a variable
What do you mean by web workers aren't supported in Chrome ? caniuse.com/webworkers
Dec
18
revised Detecting 'transform: translate3d' support
correct properties names, in order to get this actually working
Dec
18
suggested suggested edit on Detecting 'transform: translate3d' support
Dec
11
comment how to call native android apps into browser
Look at stackoverflow.com/questions/525063/… and stackoverflow.com/questions/2430045/…
Dec
11
awarded  Supporter
Dec
11
answered How to set variables via eval() when JS compressors rename variables?
Dec
11
comment Redirect to a page using JavaScript after AJAX response
Yes you can open a print popup by user interaction, then access it through the main the window, by using window.postMessage for communication. Or you could trick the browser, by creating a ghost anchor tag. You could put a URL with get parameters, a _blank target and trigger it with a javascript generated click event. Or, maybe the best way is a DOM popup over your app, and the document to be printed in a iframe.
Dec
10
answered CakePHP JavaScript execution with AJAX
Dec
9
comment How to make a Model available in a View Cakephp 2.x
What's the issue ? What do you want to do exactly ? Where do the $current_user array come from ?