I’m looking to get coptic date of today with any code type like php or javascript to display coptic date to my site header. I need it in arabic or english. I have tried to find it, but didn’t found any thing like it in english. Reference: http://www.copticchurch.net/easter.html http://www.ortelius…
Author: admin@master
HTML5 event for `onselectionchange`
Is there a standard cross-browser HTML5 event which corresponds to IE legacy onselectionchange (so it is fired when the current selection changes)? EDITED, I’m looking to track Selection object changes. Answer use onchange I recommend using jQuery to avoid these cross browser issues, but that does not m…
Javascript: Round up to the next multiple of 5
I need a utility function that takes in an integer value (ranging from 2 to 5 digits in length) that rounds up to the next multiple of 5 instead of the nearest multiple of 5. Here is what I got: When I run round5(32), it gives me 30, where I want 35. When I run round5(37), it gives me 35,
Syntax Error: Unexpected Identifier
I made some code that wouldn’t work. An error popped up in the Chrome console saying “Syntax error: Unexpected identifier”. Error is on line 19. Here is the code: Answer from line 17: add a comma on line 18 as @thg435 mentioned
Node.js: get path from the request
I have a service called “localhost:3000/returnStat” that should take a file path as parameter. For example ‘/BackupFolder/toto/tata/titi/myfile.txt’. How can I test this service on my browser? How can I format this request using Express for instance? Answer I have not tested your code …
Node.js project naming conventions for files & folders
What are the naming conventions for files and folders in a large Node.js project? Should I capitalize, camelCase, or under-score? Ie. is this considered valid? Answer After some years with node, I can say that there are no conventions for the directory/file structure. However most (professional) express appli…
‘currentApple’ is already defined showing in jslint
I have have some js code; in that I ran the js lint. I have this error: ‘currentApple’ is already defined Do I need to remove var currentApple from else to make it work? I’m providing my code below: Answer
if/else to call the function, the rest of the logic is identical
I am having a js code inside a js function. This contains an if else condition which contains same functionality, the only thing changed is the parameter. So the only thing different is the parameter string you are passing to the functions. The if/else is used to call the function, the rest of the logic is id…
Applying javascript to check file size and extension
here is my script. What I am trying to do is to trigger it using onchange event. But it seems does not work very well. I have tried edit here and there but still facing problems. As for my latest edit below, the problem is, there is 2 files to be uploaded, but only the second one will display alert
AngularJS google maps directive
I’m trying to develop an app using angularjs and a directive that I’ve found for instantiate GMaps: http://nlaplante.github.io/angular-google-maps/#!/usage. I follow all the steps but I cant get to render the map! it returns no errors! in the HTML In the controller: Answer Different answer, but I …