Tagged Questions
0
votes
3answers
150 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 ...
-3
votes
3answers
116 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
2answers
72 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", ...
2
votes
1answer
234 views
Gmail: What is a jQuery selector for incoming mail senders only? How to work with highly compressed and nested CSS in general?
As the title says, how do you work with parsing highly compressed and nested structures such as a Gmail page?
I'm writing a script for internal use (customer service) to extract incoming email ...
1
vote
1answer
434 views
jQuery: Get html as user input, update it, and return updated html to user
I'm trying to create a tool that will update some html provided by the user in a textarea form element. I want the user to provide a well-formatted html table, the rows of which may have classes to ...
0
votes
1answer
133 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
0answers
21 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
0answers
40 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
139 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 ...
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 ...
0
votes
0answers
179 views
Let user interact with another sites DOM (firebug style)
I know you can use an html parser and bring in html from another site, but I was wondering if there was a way to load an entire site (html & css) and allow my users to inspect the dom similar to ...