Tagged Questions
0
votes
4answers
57 views
Remove element from DOM
I have a code:
<ul class='mates'>
<li class='m' id='1'>Jakub</li>
<li class='f' id='2'>Vinnie</li>
<li class='m' id='3'>David</li>
</ul>
This ...
0
votes
1answer
36 views
Jquery Content Slider Plugin that is able to change slide order dynamically?
I am looking for a jquery content slider plugin that is able to have its slide order changed dynamically after the page load. This is a feature that I would like the user to be able to control in the ...
3
votes
5answers
59 views
Javascript character restriction and calling a function with getElementById
I have a JS function that checks and restricts certain characters typed in input forms.
The code look like this:
var alphaOnly = /[sA-Za-z\söÖäÄüÜ]/g;
var alphaextraOnly = ...
5
votes
1answer
43 views
Detect changes of CSSStyleDeclaration object in JS
Is there any way to get notified when a CSSStyleDeclaration object gets changed just like DOM changes which can be tracked using events like DomAttrModified?
So if there for example was some JS code ...
0
votes
1answer
47 views
hide an element when click any other place(outside the element) on the page
I am working on a popup menu in my web page. currently, I can successfully display the menu. What I want to do is hiding the menu when I click outside of the menu. I know one way to do this is bind ...
1
vote
1answer
49 views
What kind of technique is this HTML tag?
Facebook like button (XFBML) used this
<fb:like send="true" width="450" show_faces="true"></fb:like>
Clearly the <fb></fb> is a tag, XML will accept it but it's not HTML. ...
0
votes
3answers
66 views
Jquery change button value not working
I've been struggling for hours and I cannot get the following code to work;
<li>
<img width="100px" height="100px" src="$profile_picture">
<p>Username: $username</p>
...
-2
votes
0answers
26 views
Iterate over multiple divs and extract information in VBA [duplicate]
I am trying to extract information from a HTML page using VBA. The HTML code from which am trying to extract the information is as below.
<div class="section subsection-reorder summary-education" ...
2
votes
3answers
65 views
How do I find which jQuery event is being called when I click a textbox?
I've inherited a piece of software and in it is a form where I cannot figure out where the click event is in jQuery.
When the user clicks in a textbox on the form, the checkbox next to it toggles ...
1
vote
1answer
54 views
Loop through multiple divs using VBA
I am trying to extract information from a HTML page using Vb script. This is the HTML page from which I am trying to extract the information.
<div id="profile-education">
<div ...
0
votes
2answers
28 views
tag next to a label in javascript
I do not have the luxury of using jQuery, I want to hide the span tag in certain conditions using Javascript and the span tag does not have an id.
"<label name="lcity" id="lcity" for="city" ...
1
vote
2answers
35 views
Obtaining a DOM Range by clicking anywhere within an Element
Given the following HTML...
<p>Today is <span data-token="DateTime.DayOfWeek">$$DayOfWeek$$</span>,
</p>
<p>Tomorrow is the next day, etc, etc....</p>
Clicking ...
1
vote
0answers
21 views
Mozilla Firefox form values reset on history.back
I'm writing a PHP script. I've got a form uses post method and action to another page. If an error occures, I show a message on that target page, and let the user go back via a link that triggers ...
0
votes
3answers
70 views
why cant you access first div element of body like document.body.div[0] in html/javascript
I can do document.body.childNodes[1] but why not this 'document.body.div[1]'. How document is special?
Sorry if i am missing something.
Following this logic,and document is not special, body should ...
0
votes
1answer
40 views
Using PHP Simple DOM Parser to get image from Wordpress Post
I am using the open source PHP library known as PHP Simple HTML DOM Parser to scrape the first image of a Wordpress Post. If I call the main website:
$html = file_get_html('http://iadorefood.com/');
...
0
votes
1answer
50 views
How to transform an image URL into a DOM file object using javascript/ajax?
I have a script which allows me to crop images using jcrop.
To achieve that, I have to upload an image from my computer using the input type file. I want to extend the functionalities of my ...
2
votes
0answers
59 views
Getting the shape/outline of an HTML node in JavaScript
Is it possible to get the shape/outline of a DOM node in JavaScript? I would like to get some kind of representation of the shape or outline so that I can tell exactly which pixels the DOM node ...
2
votes
2answers
87 views
why won't my appendChild work?
function purchase()
{
var r=document.createElement('div');
r.className="row";
alert(r);
var p=document.createElement('div');
p.className="purchase-hero-unit";
alert(p);
var ...
0
votes
1answer
19 views
Duplicate Event in Parent Window
I have an iframe on my page. The iframe has the same origin as my page, so I shouldn't need to worry too much about cross-origin security problems.
On the parent frame, I have a "keydown" event ...
1
vote
2answers
48 views
jQuery not working on IE 9 when retrieve grand child element
The following jQuery doesn't work on IE9. Unfortunately I am on jQuery 1.4
var denomAmount = j(this).closest('.denom').children('.denomValue').eq(0).val();
Dom structure is like this
<tbody ...
0
votes
1answer
44 views
IE 9 debugger how to get variable value
My code not working on IE 9 but fine in Firefox:
var denomAmount = j(this).closest('.denom').children('.denomValue').eq(0).val();
I want to find what is eq(0) going to return but IE9 debugger give ...
1
vote
2answers
38 views
Scraping much data from different URLs with simple_html_dom.php
i basically want to do exactly something like this: Simple Html DOM Caching
i got everything to work so far, but now i'm getting the following error because i scrape many sites (6 at the moment, i ...
0
votes
3answers
33 views
Create element thats embraces an existing one
I need to create a div that will contain another div that already exists in DOM.
<div class='a'></div> to <div class='b'><div class='a'></div></div>
I created a ...
2
votes
1answer
38 views
How to limit the timeout when running DOMDocument->loadHtmlFile?
I'm trying to get the content from some website but if the website is down, it takes a really long time to open (like 1 min).
$html = new DOMDocument();
...
-1
votes
0answers
56 views
Change background image of THIS cell
I'm trying to change the background image of only expand rows. The following code works but it will only change the background image of the first rows td, regardless of what row I expand. How do I set ...
0
votes
0answers
18 views
Disable Default Tooltip Behavior in Custom Tooltip Script
I have a custom script which displays what I want exactly as expected. The problem is, when my custom tooltip is active, the default tooltip, the one with yellow box;
As you can see...there is no ...
2
votes
1answer
22 views
Is there a way to get the width of a Selection/Range?
You can get the current Selection with getSelection() and its Range with getRangeAt(0). There's a bunch of information in there: starting node, ending node, characters, position etc.
What's not in ...
1
vote
2answers
72 views
Accessing HTML Elements that have been created by setting innerHTML
I have a Function which makes an ajax call and then return a piece of html that is inserted into a table's td element. using element.innerHTML=ajaxResult; Now I want to access the elements in the ...
-3
votes
1answer
40 views
How to create a table in HTML with JavaScript that gets the row and column from user? [closed]
How can I create a table in JavaScript then fill it with data from a 2D Array that I get from the user?
0
votes
1answer
29 views
Repair/fix invalid HTML using Javascript/jquery
I want to use content(some div) on the page.
So I request the the page using AJAX. Since I want to use some div (by ID), I have written the following code but the problem is the HTML that gets ...
0
votes
7answers
82 views
How do I reference the data in a img src=“” tag after getElementByID with Javascript?
I am trying to getElementById("game_image") and the TagName is 'img' I want the data within the 'src' tag, specifically the 'key=f430a2c1' token.:
<img id="game_image" ...
0
votes
1answer
57 views
$(“#id”).val() return option text for a dojo.filteringselect object
We have a dojo filtering select object but have to validate by jquery. Now the problem is
var value= j("#filteringSelectId").val();
value only returns the text of selected option instead of the ...
-2
votes
0answers
25 views
Because jquery functions not binding when control is not visible? [closed]
During load page, one asp.net user control is not visible, after call server postback, this control change your status to visble but jquery not binding in my usercontrol.
when the initial status is ...
1
vote
4answers
86 views
How can I limit the amount of text in a DIV that I periodically add messages to?
I have a web based program that receives one line text messages periodically from the server (with Node.js and socket.io) that I append to a scrolling DIV. The messages are simple text; for example, ...
5
votes
1answer
143 views
DOM takes too long to react
I'm trying to "GET" an image from a file every 100ms by changing the source of a DOM object. I can see that the GET call is indeed returning the correct image every 100ms, but the actual image display ...
-4
votes
0answers
42 views
Помогите с Php dom simle parser [closed]
In general there is a site I do parsing as follows:
foreach ($ html-> find ('div [id = content]') as $ element) echo $ element-> innertext. '
';
I still parsed, but the problem is that the ...
1
vote
1answer
62 views
How to get event listener of element set through Jquery in chrome dev tool?
I tried to search but not found exact solution.
If a div element has onclick event listener set by jquery than how to get value/function triggered on click in chrome dev tool?
I try in dev tool but ...
0
votes
1answer
33 views
How to identify tags in a node list in Javascript?
When my HTML looks like this:
<div id="aa1"><h1>aaaa</h1><h2 class="center">bbbb</h2></div>
and my javascript looks like this:
var list= ...
1
vote
2answers
58 views
Setting event handlers to DOM objects
I was looking for the most proper way to attach DOM events avoiding browser compatibility issues and found that the Mozilla developers site states:
The old way is to just assign it like this:
...
0
votes
1answer
51 views
Creating temporary HTML code
I try to make my code more modular. Currently I include jspf file which contain code for jQuery Dialog into any required jsp file.
I want to put this HTML code into JS file, so I only need to include ...
-2
votes
1answer
55 views
How do I populate a table in Javascript by clicking a button using the onClick() function?
Using JavaScript, I want to populate the numbers in soduku.setstring(); into a table once a user clicks the button "Easy". How can I achieve this using the onClick() function?
function initialize() ...
0
votes
0answers
20 views
How to add attribute to anchor element using PHP Simple HTML DOM Parser
Need to add target="_blank" to all anchor tags in page that is parsed.
I use the following to change the relative href attribute to absolute;
foreach ($html->find('a[href]') as $a) {
$href = ...
0
votes
1answer
36 views
Why does the google map api render the map partially 2nd time around?
I have this js code to render my map :
function loadMap(address)
{
console.log(address);
var geocoder = new google.maps.Geocoder();
geocoder.geocode({ "address": address }, function ...
0
votes
1answer
16 views
Duplicate (filter) id of inline SVG
When creating an inline SVG with filters, I have to define an ID for the filter.
When I automatically generates several inline SVG with slight differences, the filter of the first image prevails ...
1
vote
2answers
29 views
Stackoverflow comment highlight when id of comment is hit in url
I have seen when ever we enter a url in browser, metioned below, the comment is hightlighted.
ie. comment element gets a background color.
Chrome does not display images on Refresh
Any one know, how ...
0
votes
0answers
29 views
<script> getting stripped in IE when using innerHTML and text content is empty
I have a string of HTML; I'm getting from an AJAX request. I have no control of its content:
<span></span><script>alert("test")</script>
In IE 8, 7, 6, when I try to ...
0
votes
2answers
42 views
Add SVG element to existing SVG using DOM
I have a HTML construction that resembles the following code:
<div id='intro'>
<svg>
//draw some svg elements
<svg>
</div>
I want to be able to add some elements to the SVG ...
7
votes
2answers
90 views
How to Implement DOM Data Binding in JavaScript
Please treat this question as strictly educational. I've accepted and answer but I'm still interested in hearing new answers and ideas to implement this
tl;dr
How would I implement bi-directional ...
3
votes
2answers
46 views
Whether DOM property will work for Phone Gap android?
I am working on a Phonegap android project.
I would like to know whether the DOM property will work for Phone Gap or not.Because,I tried implementing a condition such as
...
2
votes
2answers
60 views
Why does getElementById not work on elements inside the document element? [duplicate]
If you use getElementById to with document like - document.getElementById then it always works.
But however, if we perform the same on an element say x like x.getElementById, then it returns an ...




