3
votes
3answers
94 views
+150
What is the best way to go about creating a page of stickies with savable and retrievable content?
I have had a look at sticky notes with php and jquery and jStickyNote, and while both seem to look pretty nifty they lack some elements I am after. I haven't been able to find a wa …
1
vote
3answers
46 views
Detect when user clicks link, but aborts
I am working on a Web CMS. When the user clicks on a link to move to a different page, or submits a form, I want a "please wait" animated GIF to show up in the top right corner to …
0
votes
2answers
15 views
Facebook File Upload Using Ajax
Hi All
Is it possible to upload file in facebook fbml (not iframe) using Ajax ? not a complicated one but just use simple input type="file" tag wrap in a form and post the from us …
1
vote
1answer
5 views
Is possible to capture KeyDown event when current document is in design mode?
As you know, most of rich text editor use iframe to create WYSIWYG editor. In iframe contain document that is in design mode. I want to capture key down event when user press '@' c …
1
vote
2answers
33 views
Javascript - How should I calculate the result use for loop?
Suppose a carpark charges a $2 minimum fee to park for up to 3 hours, then the carpark charges an additional $0.5 per hour for each hour. For example, park for 5 hours charge $2+$0 …
0
votes
1answer
5 views
Parsing Javascript files with phpDocumentor
I've been playing with phpDocumentor recently and found it quite suitable for my needs. I'm largely working with PHP/HTML/JS/CSS codebases and would like phpDocumentor to parse my …
6
votes
13answers
1k views
Building Standalone Applications in JavaScript
With the increased power of JavaScript frameworks like YUI, JQuery, and Prototype, and debugging tools like Firebug, doing an application entirely in browser-side JavaScript looks …
0
votes
3answers
25 views
How to make a picture cropper (only client-side concerned)?
How to make a picture cropper? Only plain-vanilla JS!
0
votes
1answer
64 views
How to use the John Resig JavaScript Micro-Templating engine?
I have searched for a bit on a basic example on using the John Resig JavaScript Micro-Templating engine on google but came out dry.
I decided to bring it to base guys. Can anyone …
0
votes
2answers
19 views
How to change “selected” value in combobox using javascript?
I have 2 comboboxs "combo1" and "combo2",
if i select any value in combo1, i need that same value in combo2 as "selected" by javascript
<html>
<head>
<tit …
4
votes
2answers
171 views
Convert a string with a hex representation of an IEEE-754 double into JavaScript numeric variable
Suppose I have a hex number "4072508200000000" and I want the floating point number that it represents (293.03173828125000) in IEEE-754 double format to be put into a JavaScript va …
1
vote
3answers
39 views
Why does the function on my button not work?
I am writing a form to get data from boxes and do a calculation when the "Calculate" button is clicked. The button does the calculation through the function cal(),
but it cannot di …
1
vote
3answers
57 views
Allow RESTful DELETE method in asp.net mvc?
im currently setting up asp.net to accept DELETE http verb in the application.
However, when i send
"DELETE /posts/delete/1"
i always get a 405 Method not allow error. I tried …
0
votes
1answer
19 views
What is the most straightforward GWT workaround for same origin policy restriction (trying to query google maps api)?
Hello --
I am trying to do some basic geocoding using the google maps API and a GWT dyanmic web project in Eclipse. For example, query the following URL:
http://maps.google.c …
1
vote
1answer
26 views
Javascript - How to reverse a string and disappear those commas?
I want to reverse the string like this: "How are you" -> "you are How"
Those are the code I typed, it could reverse the string ,
but it still has comma between strings like "you,a …
