Tagged Questions
-2
votes
1answer
25 views
Read txt file's lines in JS (Node.js)
I want to read a text file (.txt) using Node.js. I need to push each of text's lines into array, like this:
a
b
c
to
var array = ['a', 'b', 'c'];
How can I do this?
2
votes
2answers
68 views
Error in JSON file
When i am using below code :
{
"info":[
{
"name": "Adam",
"address": "Park Street"
}
]
}
It is parsing perfectly
but adding on further code like:
{
...
0
votes
0answers
29 views
JSON Building in Node.js with YQL parsing
Respected ppl ....
This is my node.js code ...
https://gist.github.com/SkyKOG/99d47dbe5a2cec97426b
Im trying to parse the data of our exam results ...example ...
...
1
vote
1answer
47 views
Node.js loops and JSON building
Respected ppl ....
This is my node.js code ...
https://gist.github.com/SkyKOG/99d47dbe5a2cec97426b
Im trying to parse the data of our exam results ...example ...
...
1
vote
5answers
63 views
javascript array find highest value
I have an array that I need to find the highest value of so when I apply it to a Highchart I can color the background if it exceeds some dynamic number a user inputs.
My code looks like this:
...
1
vote
1answer
47 views
Extracting javascript using Web::Scraper
I'm having trouble extracting javascript using Web::Scraper. Below is my test script:
#!/usr/bin/perl
use Modern::Perl;
use Web::Scraper;
use Data::Dumper;
my $contents = do { local $/; ...
0
votes
0answers
35 views
How to replace a value of an attribute in JS function on run time?
I am working on my Java application that (besides other things) produces HTML. In this HTML I need to change a value of one attribute inside one JS function every time I run it. The process is like ...
0
votes
0answers
19 views
How to select of this line “data[new][formhidden_field1]” this “formhidden_field1”?
I have
<td>
<input type="hidden" id="data[new][motion_formshow]" name="data[new][motion_formshow]" value="true">
<input ...
-4
votes
3answers
41 views
JSON parsing, always returns undefined [closed]
The respond I get by using $.get is:
{
"data": [
{
"uid": 12345678,
"online_presence": "offline"
}
]
}
I also have tried $.getJSON but no luck. The part of my ...
-3
votes
0answers
88 views
ie 7,8,9 read JS unlike other browsers [closed]
This has to be one of the strangest things I have seen. I hope it's an over sight on my part. I need fresh eyes.
Here are screen shots of the data in JSON and in the table its self. IE does it quite ...
2
votes
2answers
46 views
Parsing JSON stream
I have an application that is using chrome.sockets. JSON is being passed to and from the socket which does not have a delimiter and is not prefixed with the length of the string.
Now the way sockets ...
-2
votes
0answers
52 views
Change names of variables in javascript using rhino
I am trying to create a very simple JavaScript obfuscator.
Can someone give me examples of changing variable name and altering the code using rhino?
If I have some code like this:
x = 2
if(x>1)
z ...
3
votes
2answers
56 views
Can't find a way to use javascript + jquery to parse from URL and show it on screen
I'm a beginner in coding, i've learnt most of what I know about Jquery and Javascript from Codecademy.com
What I want to do (a little background before):
Hover over a specific link (partial url)
...
0
votes
1answer
31 views
How to evaluate LaTeX formula in javascript?
I have javascipt string in LaTeX format. For example:
\frac{y^2}{2}x-\frac{2}{\sqrt{y}}+2(x-y)^2
I want to be able evaluate it with defined variables. Does anyone know framework or lib for this ...
0
votes
0answers
30 views
Getting videoplayback file from javascript (downloading videos from server)?
I am trying to learn how to create video downloaders. This is a previous question: Getting a youtube download URL from existing url?.
The problem is that many websites use .swf objects and adobe ...
-1
votes
0answers
30 views
Retrieving rest XML and parsing it using javascript
My problem is that I have a database which stores various information. All of the data can be accessed through REST and will provide an XML response. I have been trying to develop a test HTML page ...
-1
votes
0answers
26 views
Best way to parse not clean html text in JS
Lets say i have to parse such ugly html-string:
something not important
<br><br>
<b>123</b>
<br>
something not important2
<br>
<b>43</b>
...
0
votes
3answers
70 views
Post Json data to server and parsing the responce in java script
I need to Post the Json format data to the server url. Server will send the Responce in same Json format. I need to parse it and get the data.How to do it? please help me with example.
-1
votes
2answers
55 views
Wrapping Sentences within <p> Tags with <span>'s, But Keep Other Tags
To give you an idea of what I need, I have been using the below code to parse content within tags and wrap each sentence within tags so I can then interact with sentences on a page.
...
2
votes
1answer
111 views
Using Dojo 1.9, all parsing fails in IE
So I have a rather large web app that was running Dojo 1.8. Everything works fine in multiple versions of IE and Firefox. I decided to give 1.9 a go and changed my dependency from 1.8 to 1.9. ...
0
votes
0answers
23 views
How to find the medium and search keyword using referrer - Web Analytics?
I have taken the referrer using the document.referrer from DOM. I had found some of the parameters like(port, source, host, etc.) using parseUri funtion.
Now how can I find out the medium and search ...
1
vote
1answer
71 views
Uploading image to Parse using Javascript(CoffeeScript) and REST API
I'm trying to upload images to parse and later attach them to models, however whenever I upload one it returns as a successful upload but the url contains a broken image link.
for instance:
...
2
votes
2answers
41 views
How to force the browser to parse the MathML content again?
To be specific(MathJax is not what I am looking for)I have a web-page with some MathML in it.The "FireFox" browser parses it fine but when I try to add the same code through javascript,it doesn't ...
0
votes
3answers
63 views
Accessing value in JSON object via Javascript
I am getting a JSON object via GET using Javascript. This is a result of reverse geocoding in Google Earth (https://developers.google.com/maps/documentation/geocoding/#GeocodingRequests).
{
...
0
votes
0answers
78 views
Parsing html from external url in javascript
I want to make a javascript application able to parse an html of an external URL.
The URL will be in a different domain than my server. My idea is to get the html
of the external URL I want to parse ...
1
vote
1answer
46 views
Converting humanized strings to dates moment.js
Moment.js does humanized and calendar dates, for example:
moment().calendar()
"Today at 10:17 AM"
which gets a current date object and converts to a calendar date, and
is there any way to do that ...
0
votes
1answer
37 views
Get Division in the html tag with value of the elementa
HI i need that the image tag should be generated in the division for number of times it receives the object. But it doesn't work. Can anyone please help me with same. Any help is deeply appreciated.
...
1
vote
3answers
87 views
Check if a string contains an email address? [duplicate]
How can I check to verify that a given string contains an email address.
The email address would be included with a lot of other text, as well.
Also, not looking to necessarily strictly validate the ...
1
vote
3answers
64 views
Why won't this javascript parse?
I seem to have everything in place,
<script language="javascript" type="text/javascript"
src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
<script ...
0
votes
2answers
41 views
Inserting js variable into a form variable
I am trying to pass js variable through a hidden form to a php script. No problem in passing it throught to php, however I can't the variable into the form.
function calculate() {
var ...
6
votes
1answer
88 views
Any mature parser generators for both php and javascript on the market?
Are there known and mature parser generators that both support php and javascript?
The aim is to have a single grammar definition and parsers in php and javascript that are generated from it.
Are ...
-2
votes
3answers
73 views
JSON parsing with Javascript and jquery [closed]
bfunc({
"query": {
"count": 1,
"created": "2013-05-03T06:20:01Z",
"lang": "en-US",
"diagnostics": {
"publiclyCallable": "true",
"cache": {
...
0
votes
1answer
49 views
Jquery parseHTML not giving expected object
Given I have this html string in javascript variable "data"
<div class="packery-item">
<img class="rsImg" ...
0
votes
1answer
53 views
Javascript Nan Error: parsing strings to ints
References
How to convert string into float in javascript?
jQuery calculation NaN
Goal
Take two numerical input values from the user.
Divide the second number by the first number.
Multiply the ...
0
votes
1answer
48 views
Parsing Real-Time Changing text by Javascript
I would like to parse a webpage to gather data for scientific use. The text I need to parse is located within a < span >. Parsing the HTML will not achieve this because this text is constantly ...
1
vote
2answers
24 views
How does the ECMA Script 5 spec allow successful parses for hex ints greater than 0xFF?
In EMCA262 version 5.1 the definition of a hexadecimal integer literal is: (document page 20, PDF page 32)
HexIntegerLiteral ::
0xHexDigit
...
0
votes
0answers
29 views
FB.XFBML.parse -> document.getElementById dont gives me a dom object
$.getJSON(url,function(data)
{
// if data is empty set flag
if(data.length > 0) {
setTimeout(function () {
$.each(data, function(i,data){
var div_data= ...
0
votes
3answers
89 views
store and retrieve javascript arrays into and from HTML5 data attributes
How can a javascript Array be stored in an HTML5 data attribute?
I've tried every variation of JSON.stringifycation and escaping characters.
What is the precise method to store the array and ...
3
votes
2answers
110 views
Javascript Convert String to Array of Objects
I have a NodeJS App that accepts a a string (uploaded input!) I have No Control over the input I am merely building a REST Service to Processes the data.
That string is meant to be an Array of JSON ...
1
vote
1answer
45 views
parse into database from javascript form
I have a webpage with form which is processed with javascript code. There is a form with button with javascript onClick() method.
Here is the webpage (czech declensions)
On input I have a list of ...
0
votes
1answer
41 views
How to detect when json isn't json (it's html)
I'm working with a companies broken API. When the endpoint isn't available I don't hit an error it just sends back page unavailable HTML in the body (normally it returns JSON).
I'm trying to figure ...
0
votes
1answer
34 views
JSON reply parse on JS
I need to parse reply from server, have a code:
$.getJSON('http://connect.mail.ru/share_count?callback=1&url_list=http://www.google.com&func=test', function(data) {
...
2
votes
2answers
68 views
Read xml with jquery
I apologize to ask a question relating to this topic as it seems there are many, many topics relating to the same subject. I've read through a fair amount of them but I have not been able to find the ...
0
votes
1answer
36 views
how to do nested query in Parse API?
In the user object, there's an array of features:
skills: {"piano:10", "singing:5", ....};
then I want to select users with skills of 'piano', how can I do it?
it won't be an exact match but it has ...
0
votes
4answers
91 views
Parse PHP Arrays in JavaScript
I've some PHP source code that are simple key-value arrays like these:
return array('var1' => 'var2' );
And
return array('sub' => array( 'var1' => 'var2' ) );
And I need to parse them ...
0
votes
2answers
41 views
Iterate through JSON Response in Javascript
this is the response string I am trying to iterate through:
{
"page": 1,
"results": [
{
"adult": false,
"backdrop_path": "/8uO0gUM8aNqYLs1OsTBQiXu0fEv.jpg",
"id": 550,
...
0
votes
1answer
47 views
How to get a json file into a text variable in javascript
I am new using a json file and i wanna put the file into a text variable in javascript to run a function not in a object....
I have been trying something like this.. but nothing...
var jqxhr = ...
1
vote
2answers
55 views
How can I remove visible HTML syntax from text in a browser?
We are pulling in the Editorial Review from the Amazon API, and it includes some inline HTML syntax which should not be displayed.
How can we most simply remove extra HTML syntax which is displayed ...
0
votes
2answers
114 views
Pass a value from .txt to a HTML textbox (using Batch, Java, or PHP)
Complex question so let me try to explain....
I have a text file (named filelist.txt) with a list of values like so:
12_23_4_ABC_|
12_35_6_XYZ_|
12_36_5_ABC_|
12_37_9_UVW_|
12_38_8_XYZ_|
...
1
vote
2answers
70 views
Execution order of html
I want to know HTML parser's parsing sequence.
Given two html files:
page1.html
<html>
<body>
<iframe id="x" src="page2.html"></iframe>
<div id="z"></div>
...




