Posts by Ronny Amarante • 2,544 points
56 posts
-
1
votes4
answers1101
viewsA: How to check with javascript/jquery which object(s) is(is) triggering a scroll bar on the page?
You can test with this function: function isOverflowed(element){ return element.scrollHeight > element.clientHeight || element.scrollWidth > element.clientWidth; }…
-
1
votes1
answer194
viewsA: How to access script control with Jekyllcms
Hello, there is no problem you make your Apikey available on the internet, on Maindrill and on Facebook you will have the options to link your Apikey to a domain or IP, IE, that Apikey will have use…
-
0
votes4
answers17125
viewsA: net error::ERR_BLOCKED_BY_CLIENT when making Ajax request
Friend, use the following technique: http://www.chrome-allow-file-access-from-file.com/ That was giving access to local files. By default Chrome blocks access to local files.…
-
1
votes5
answers20277
viewsA: How do I use @import in a CSS file?
You should not use /css/.css file, use: css/.css file without the "/" in front of the folder name. That would be: @import url("css/fonts.css") and if it’s in the same folder, just use: @import…
-
1
votes1
answer510
viewsA: Zend Session Expires Fast
$testSpace = new Zend_Session_Namespace('testSpace'); $testSpace->setExpirationSeconds(300, 'accept_answer'); $testSpace->accept_answer = true; I think it helps!…
-
1
votes4
answers5304
viewsA: How to make an alert with animated echo?
Are you using Bootstrap in your application? If you are, take a look at Modal: http://getbootstrap.com/javascript/#modals This will look better than simple Alert, except that Bootstrap brings a…