0
votes
0answers
38 views

script tag doesn't follow tree structure jquery parseHTML

I'm parsing some HTML through jquery's parseHTML() function: <code> <b>test</b><script>lol</script> </code> Problem is, that when it comes to <script> ...
0
votes
1answer
26 views

javascript changing tag attributes not being executed in the right order?

I have an html file that consists of a table with fields inside. Some fields are marked by xxx, which should be converted to textareas. That has been successfully done as: function raplace() { ...
0
votes
2answers
38 views

Change html tag with same dimensions

I have a long table with different entries, some of which are marked as "xxx". When the html code is generated, the row with the xxx looks like this(generated by a plugin): <td ...
0
votes
3answers
41 views

Jquery converting &quot; to literal quotation

I am seeing some unexpected behavior in Jquery. It appears jquery is converting &quot; to literal double quotes, which is messing with form validation in a single page app I am working on. The ...
0
votes
2answers
54 views

How to style td using javascript without using id and class..?

Hi I am having HTML like this... <table width="600"> <tr> <td> Text </td> </tr> <tr> <td> <img src="demo.jpg" width="200" ...
0
votes
0answers
24 views

Parse CloudApp link for get direct content in javascript

When I upload a file to CloudApp, I get a link like cl.ly/e9fe90fewpfwe Some times the link is an image and others is a file. Is there a way in javascript to do something like this var ...
1
vote
3answers
49 views

Increase value of digit within HTML string (jQuery)

I have a bunch of images in a folder which are all named as numbers. The first one is displayed on document load. <img src="image/01.jpg" /> I want to use jQuery to flick through the images. ...
0
votes
0answers
44 views

Multiple handlebar #each blocks

I am working on handlebars in my project and i wanted to see if anyone knows if its possible to include multiple {{#each this}} blocks in a HTML page. I am currently using the below block to output ...
0
votes
2answers
73 views

HTML parsing / checking for certain value of certain attribute of certain tag [duplicate]

How can I, with JavaScript, check if a webpage has any of the following: <meta name="viewport" content="width=device-width, initial-scale=1.0 maximum-scale=1, user-scalable=no" /> <meta ...
0
votes
1answer
39 views

jQuery html() getting Javascript (.js) with ?_=1365695139815

When I get an url that contains <script src="some-file.js"></script> as the follow example: <html> <script> $(document).ready(function(){ $.get('/some-url', function(r) { ...
1
vote
2answers
186 views

How can i parse remote html page using pure java script

I have a requirement to Parse remote html page ( ex: www.mywesite.com/home) how can i get this website html page source and how can i parse this page that html is like this <html> ...
0
votes
2answers
75 views

Replace css value with a string

i need to change the height and top of my div to "$$height$$" and "$$top$$" before posting it for save in php. but jquery fails todo so (i think for mistake prevention): $("#myobject").css("width", ...
1
vote
2answers
128 views

Filter/shorten the AJAX/get html by ID

I am currently rewriting my error/faq messages using markdown(instead of previously used HTML content stored inside database). Now, I have temporarily setup a page errors.php where a text-area shows ...
0
votes
3answers
572 views

Create a JSON object from HTML using jQuery

Problem Overview Let's say I have a shipment of candy. The shipment has a number of boxes, and each box has a number of unique candy types. Every box has a unique id, different from every other ...
1
vote
2answers
165 views

jQuery parse string data

My simulation results are acquired from REST service which contains strings and numerical values. I am able to parse the numerical ones (x_water), but have difficulties with the strings (x_date). ...
1
vote
1answer
87 views

Set the correct Accept HTTP header to get the parsed html content from GitHub repo

How can I set the correct Accept HTTP header for requesting another Media Type (in this case as Html) with GitHub's API? The current content object is always encoded as base64, but I need it as ...
0
votes
0answers
62 views

markitup: BBCode-Parser implementation doesn't work

I try to configure markitup, 'cause I want to parse the input before showing in the preview-box. I downloaded the markitup.bbcode-parser.php from this source and saved the file in the ...
0
votes
0answers
175 views

jQuery .parseHTML() not detecting style attribute with invalid CSS in IE9

jQuery $.parseHTML() does not seem to be identifying the style attribute when the attribute's value represents invalid CSS. Here is sample code: jQuery(document).ready(function() { var ...
1
vote
1answer
210 views

Loop Through an AJAX Called by Jquery that Pulled remote HTML, then Parsing the Data For Certain Criteria and pulling html tr

Okay To start off this is my first post so I apologize initially for any "Newbie" mistakes I may Make. I will try to be Detailed as possible and lay it out as best I can. What I Am doing: Creating ...
0
votes
3answers
60 views

jquery to change value of a class element based on other class

I have a page with many same type of divs as below. <div class="post_right" data-icon = "arrow-r"> <p>Posted at:</p> <div class="post_time"> <%= ...
0
votes
2answers
347 views

HTML tags encoded when appending CDATA tag

In my page, there is a div in which I have to display html from javascript. So in javascript, I append the CDATA tags so that the html is displayed as data. Following is the code I have used var ...
3
votes
1answer
117 views

Where does my dynamically added script go?

I'm new to web development and I'm trying to understand how the DOM works. I have a basic page with 2 buttons and some text. One of the buttons does a call to Jquery's Get function. My server ...
0
votes
1answer
174 views

Using $.getJSON() I can't receive results in any version of IE. Firefox/Chrome work ok

The problem is that I can not retrieve the results of a .json file that I am accessing on a secured server, but this only happens when using ANY version of IE web browser. Firefox and Chrome work ...
0
votes
5answers
205 views

jQuery display text nested in paragraphs inside a div

I have HTML that looks something like this: <div class='textbox' data-title='Sometitle'> <div class='textareaedit'> <p><strong>Test sample text</strong></p> ...
0
votes
2answers
114 views

jQuery load a div wrapper before a div after page load [closed]

I want to a load a div to wrap around another div after page load and have CSS applied to that div. This is the page: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> ...
0
votes
3answers
80 views

How to get the content of a span element using jQuery?

When a text is clicked on my page, I want to get the value of the nearest (going upwards) span element with the class of 'network_ip'. Here is my code: <div class="ip_header"> <div ...
0
votes
3answers
165 views

How do I parse a remote page for images using the name attribute using jquery?

Due to the circumstances of an internal site setup, I am trying to parse a series of images from a local page and have the image information passed to another local page by matching the name attribute ...
0
votes
1answer
292 views

Autofill with AJAX and Simple HTML DOM Parser

I'm trying to create an autofill script with AJAX and the Simple HTML DOM Parser. Here's what I have so far: The PHP file (discogs.php): <?php ini_set('user_agent', 'TEST/1.0 ...
0
votes
3answers
100 views

How To Get DOM Parser To Wait For Scripts To Run Before Parsing Data

Ive got a page with an html table that uses tablesorter and is sorted onload. I want my dom parser script to grab the rows from this table only after it has been sorted. Right now it is skipping the ...
1
vote
2answers
261 views

Parsing HTML using JavaScript

I'm working a page that needs to fetch info from some other pages and then display parts of that information/data on the current page. I have the HTML source code that I need to parse in a string. ...
0
votes
1answer
66 views

jquery different selections from this click

I have this code that doesn't really work First I add a img div $('div.group_title a').prepend("<img src='replace_w_img_link_in_real' width='20' height='20' >"); Then I make a selection of ...
0
votes
2answers
450 views

Parsing HTML using Xpath with Javascript

In .NET there is a lovely library that allows me to easily parse an external html page using xpath queries (HTML Agility Project) - the problem is I have to do that client-side, so only javascript. Is ...
0
votes
0answers
76 views

jQuery and dynamically loaded, badly formed HTML

I am making a WebApp that dynamically loads news feeds (think a Pulse News WebApp) but I am having a problem that if an article has badly formed HTML (generally misplaced or missing end tags) it ...
1
vote
1answer
409 views

Dual select box not POSTing correctly

I'm still trying to learn jquery so bear with me. I have a dual select box that only works if I select all the results of the second select box after I move them there. What I want is when the first ...
0
votes
1answer
151 views

Values of <td></td> is not returned using HtmlUnit

I am having a table structure in a web page as below In this i am trying to get all the values in the tr using the HtmlUnit code as below. <tr class="odd" id="rawmeta-123"> <td ...
1
vote
0answers
48 views

making a jquery plugin for prettifying html or minifying html

I wanted to make a jquery plugin for prettifying the html code taking the indent spaces as an option. I wanted to know how to proceed for this. Should I extract each dom element recursively & ...
0
votes
1answer
212 views

Jquery variable returning undefined if the Dom object was only one element

I use this code on my wordpress plugin to return the src of the image the user selected in the wordpress media uploader. The problem that this code does not return the image src if only the image ...
0
votes
1answer
138 views

Convert an html Object to a String and Output the String using jQuery

I'm ultimately trying to find all image tags on a page and print out the ones without alt tags. Right now I have this: var str = '<img id="img1" /><img id="img2" /><img id="img3" ...
1
vote
3answers
2k views

Accessing elements of ajax html response with jquery

I have problems to access elements of a html response of an ajax request. I am using jquery and I try to simplify the problem as much as possible: I have an ajax html response like this (kept very ...
0
votes
1answer
136 views

How do I parse info from this webpage..?

I need to parse the weather information shown along with the corresponding images shown. http://www.tportal.hr/vijesti/vrijeme/hrvatska7dana How do i go about it?Seems the page seems to be using ...
0
votes
1answer
1k views

dynamically alter html tables to display on mobile

I am creating a mobile optimized website that is dynamically created by recognizing a request from a mobile device, manipulating the existing page to be mobile optimized using php and the html parser, ...
1
vote
2answers
115 views

How to check the innerHTML area of a jQuery variable

Let's say that I have the following stored in a jQuery variable. <i class="a b c"></i><span class="itemLabel d"><span><i class="e f ...
1
vote
1answer
236 views

Extract all inline css of concernet html

I want to extract all inline styles of the concerned html. For example, below is the concerned html for which inline css is to be extracted: <div id="concernedHtmlPortion" style="style1"> ...
2
votes
5answers
2k views

A JavaScript parser for DOM

We have a special requirement in a project where we have to parse a string of HTML (from an AJAX response) client side via JavaScript only. Thats right no parsing in PHP or Java! I've been going ...
0
votes
1answer
313 views

Dynamic creating tooltip using JQuery plugin?

I searched for some nice easy to use jQuery tooltip plugin but couldn't found any useful. My requirements are that I am creating a list which I retreived asych from server through javascript and ...
2
votes
1answer
896 views

Problems Turning String of HTML to jQuery Object then Parsing Through It

I have set up a little snippet that will take an autoresponder code for email marketing from a textarea and when the textarea loses focus, it parses what was just pasted and grabs some attributes and ...
-3
votes
3answers
118 views

JQuery: select using markup tags?

I am dynamically finding the string of open tag within a page and want to use JQuery to get the text of the element that the open tag corresponds to. For example, suppose this is my page: <h1 ...
0
votes
1answer
130 views

java parse html files [duplicate]

Possible Duplicate: What are the pros and cons of the leading Java HTML parsers? I need to search data on html page using java language. Which html DOM parser do you recommend? Is there any ...
-1
votes
1answer
279 views

How to get HTML code if another domain want cookies enabled

How do I get the HTML code of another domain that wants Enabled cookies? I just need to parse this page www.fx-trend.com/pamm/rating/ I'm using javascript jquerry (jqmobile) and sometimes PHP.(I ...
2
votes
1answer
426 views

Can HTML attributes have apostrophes

Due to a number of reasons I have ended up with some code that has the need to store JSON serialized objects inside of HTML attribute tags. I have however run into a problem where one of my json ...

1 2