0
votes
1answer
25 views
DOM/XPATH in PHP: What is nodeValue?
Can someone explain to me what is nodeValue in this and write out how nodeValue look like or write out what's in nodeValue? EDIT: Sorry! Yes, this is PHP.
And..
foreach ($element …
6
votes
4answers
99 views
Why does firebug add <tbody> to <table>?
I viewed the html source code, there is no <tbody>, but when viewed via firebug in the HTML tab, <tbody> appears. Any idea why?
0
votes
2answers
20 views
alternative to html top.document inside iframe
Hello,
We have a web application where we're using "top.document" since this application uses iframes and sometimes we must reach the top document.
The problem started now since …
0
votes
1answer
21 views
Which methods and class will be invoke when reload a webpage or open a new webpage in safari
As we know , When we load frame from webpage of safari, we will invoke the delegate methods of webkit informal protocol(WebFrameLoadDelegate):
webView:didStartProvisionalLoadForFr …
0
votes
3answers
29 views
How to capture DOM modifications with JavaScript and send them to a PHP server
I've been asked to create a web UI that allows a user to modify a specific section of the HTML DOM and then POST the modifications back to the server for storage. The modification …
0
votes
3answers
23 views
How to change a link into a span of text or some kind of non-anchored element with prototype
I have a link:
<a id="theLink" href="h***://stackoverflow.com">Go to SO</a>
How can I use prototype to either strip <a>'s or just leave the innerHTML so that t …
0
votes
1answer
12 views
How to get a flash url in a webpage using a webframe?
As we know , When we load frame from webpage of safari, we will invoke the delegate methods of webkit informal protocol(WebFrameLoadDelegate):
webView:didStartProvisionalLoadForFr …
0
votes
2answers
51 views
Running an action when mousing over (and leaving) an element (or its child elements)
Imagine I have the following elements:
+------------------+
| |
| +----------------+
| | |
| | |
| +----------------+
| …
0
votes
2answers
19 views
Prototype: wrapping raw HTML to create extended element
Hi all
I am reading in a complex chunk of HTML and I'd love to be able to walk this sub-tree of HTML in the same way I can the DOM.
Is there a way in Prototype to take a raw ch …
0
votes
1answer
11 views
MooTools: domready vs load
With which will function(){} fire first?
A) window.addEvent('domready', function(){});
B) window.addEvent('load', function(){});
-1
votes
0answers
41 views
oo design for javascript dhtml dom app
My question is about OO design for javascript dhtml dom app.
There is a toolbar with 5 buttons.
You click on a button, and select an image.
Next you click anywhere on a div tag, …
0
votes
4answers
67 views
tag replacement
Hi everyone !
Does anyone know how to set a new tagName to a tag using Jquery? Let's say i have an HTML document and I want to replace all 'fieldset' width 'div'.
Thanks in advance …
0
votes
1answer
15 views
How to use hidden iframe connect to the server in GreaseMonky
First,I created a hidden frame like this:
var oHiddenFrame = null;
if(oHiddenFrame == null){
oHiddenFrame = document.createElement("iframe");
oHiddenFrame.name = "hiddenFrame" …
0
votes
1answer
41 views
Why the js code works in a web page but fails in GreaseMonkey?
I created a hidden frame as follows:
var oHiddenFrame = null;
if(oHiddenFrame == null){
oHiddenFrame = document.createElement("iframe");
oHiddenFrame.name = "hiddenFrame";
oHidden …
0
votes
3answers
69 views
CSS: how to dynamically grow/shrink an HTML table column
I have a HTML like so:
<table>
<tr>
<th>colA heading</th>
<th>colb heading</th>
</tr>
<tr>
<td>colA content</t …
