Tagged Questions
JavaScript is a dynamically-typed language commonly used for client-side scripting, but (despite the name) is NOT related to Java. Use this tag for questions regarding ECMAScript and its dialects/implementations (excluding ActionScript). A pure JavaScript answer is usually expected, except if a tag ...
0
votes
0answers
14 views
Slow down an jquery animation
I have an animation that i have been trying to slow down but so far i have been unsucsessful i have tried duration and adding the time at the end however the animation seems to run at the same speed.
...
0
votes
1answer
11 views
Getting undefined ID for <div> in JSP using Javascript?
I have written jsp code somewhat like this:
<%
out.println("<div id=\""+rs.getString(2)+"\" align=\"center\" onclick=\"showDialog()\" style=\"float:left;background-color:#b4cde6; height: ...
0
votes
0answers
5 views
Inheriting IObjectSafetyImpl for safe javascript activex control in C++
Im having trouble setting my control to be safe.
I found this thread which explains how it needs to be done.
I did as explained:
class myctrl: public COleControl, public ...
1
vote
0answers
18 views
Dynamic href generation on link click based on radio button state : PHP interaction with javascript
I am using MVC framework in codeigniter and I have a view where I have this link (please note that href value is generated by call to a php function which in turn takes 'auth/mylogin' as a parameter:
...
0
votes
0answers
14 views
advanced / interactive charting solution
https://ciso.wipro.com/report/graphs/wipro.htm
I want to implement this chart. I tried lot of charts like
fusioncharts, high charts etc but none of them has such an interactivity..
legend has a ...
-3
votes
3answers
26 views
Getting music file metadata
I am writing a code to get ALL the metadata from a music file
Bitrate
Duration
Size
Artist
Comment
etc...
The get_id3_tag function gives me only a part of the metadata and I wish to get every ...
1
vote
4answers
28 views
How to set marker in google map using javascript
I am using the below javascript code to show map and marker.The marker is loading while map load,but i want to load the marker if the button named "Add marker" is clicked.The marker should points to ...
0
votes
2answers
44 views
0
votes
4answers
55 views
JSON values parsed as undefined in javascript
I am trying to parse a JSON in Javascript. The JSON is created as an ajax response:
$.ajax(url, {
dataType: "text",
success: function(rawData, status, xhr) {
var data;
...
2
votes
1answer
18 views
Leaflet:: How to check point lies inside/outside of circle
is there any method or function to check a point that it lies inside or outside of circle?
Thanks in advance.
0
votes
1answer
25 views
How to send $POST with a link ? with java or anything suitable?
I have created a plugin for wordpress that is to rate comments with star - for make it work I want when somene click on the link it send a veriable through post - I don't know what I am doing wrong ...
0
votes
1answer
47 views
500 internal server error when I hit webserver
Can anybody help me? My web service is giving me an error.
500 Internal Server Errorand304 Not Modified`
This will return me the XML data. I am unable to get the body of the requested data.
...
0
votes
0answers
26 views
scroller function on window resize
I asked a question and got a great answer back.
horizontal accelerated carousel scroller
The only problem is when I try to run this as a function on resize it no longer scrolls as expected. Is ...
0
votes
1answer
13 views
Create file and invoke download using JavaScript
I want to dynamically create a JSON file in my JS code and also invoke the download of that file?
Any chance I can do that in JavaScript?
THANKS!!
0
votes
2answers
21 views
function working except when you click it first time, chrome
I have created a JavaScript onclick function. it works fine in Firfox. but in chrome/IE, function working except when you click it first time. My code is below
<!DOCTYPE html PUBLIC "-//W3C//DTD ...