473,793 Members | 2,810 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

document.create Element('a') doesn't work?

After noticing some problems with a script, I tried testing various bits
in the squarefree javascript shell (
http://www.squarefree.com/shell/shell.html ) and noticed this:

var anchor = document.create Element("a");
anchor
undefined

but:

var anchor = document.create Element("p");
anchor
[object HTMLParagraphEl ement]

Hmmmm. I tried it on a bunch of other elements, including some that
don't exist:

var anchor = document.create Element("rant") ;
anchor
[object HTMLUnknownElem ent]

So great. I can create a "rant" tag, but an anchor tag is right out?

Thanks,

Weston

~==~
http://weston.canncentral.org/
weston8[at]cann8central.or g
(remove eights to email me)

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Jul 20 '05 #1
1 21728
Here is how I create a new anchor that has an image tag:

//create the anchor node
myA=document.cr eateElement("A" );
url = "javascript:ale rt(" + "hi" + ");";
myA.setAttribut e("href",url) ;
//create the image node
url = url_path + "images/del.gif";
myImg=document. createElement(" IMG");
myImg.setAttrib ute("src",url);
myImg.setAttrib ute("width","16 ");
myImg.setAttrib ute("height","1 6");
myImg.setAttrib ute("border","0 ");
myImg.setAttrib ute("alt","Say Hi");
// Appends the image node to the anchor
myA.appendChild (myImg);

Hope that helps,

Mike

Weston C wrote:
After noticing some problems with a script, I tried testing various bits
in the squarefree javascript shell (
http://www.squarefree.com/shell/shell.html ) and noticed this:

var anchor = document.create Element("a");
anchor
undefined

but:

var anchor = document.create Element("p");
anchor
[object HTMLParagraphEl ement]

Hmmmm. I tried it on a bunch of other elements, including some that
don't exist:

var anchor = document.create Element("rant") ;
anchor
[object HTMLUnknownElem ent]

So great. I can create a "rant" tag, but an anchor tag is right out?

Thanks,

Weston

~==~
http://weston.canncentral.org/
weston8[at]cann8central.or g
(remove eights to email me)

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!


Jul 20 '05 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
2046
by: Dante | last post by:
Hello. I have a Javascript that gets data from an XML document and displays it through javascript. The problem is that when I do dcfile.getElementsByTagName("subhead").firstChild.nodeName all I get is #text. Can you tell me why? Here is my code: /* The Dante-Cubed Standardized Markup Language Javascript API ------ Written by Sean M. Hall, Dante, and Peter-Paul Koch
8
4309
by: Sergio Otoya | last post by:
Hi all, I need to add an input hidden field to an existing form (post). I have tried a couple things like adding the '<INPUT type=hidden name=idSelectedURL value=http://server/documents>' to the innerHTML of the form but it fails. ie
2
1551
by: Andrew Poulos | last post by:
I'm having some trouble getting document.createElement to work with IE 5. Is this because it's unsupported? And, if it is unsupported, is using innerHTML a valid workaround? Andrew Poulos
10
5395
by: andreister | last post by:
He there! I've discovered that the ================================================= document.links('link_id_here').href = "something"; ================================================= is not applicable for the Firefox (even for the 1.0.6), and I'm falling into passing through the array and checking each link id.
6
8393
by: J Williams | last post by:
I'm using axWebBrowser control and HTML DOM in a VB .NET Windows application to create a new HTML document by cloning nodes. The function below is called from the axWebBrowser1_DocumentComplete event using: Dim mNewDoc As mshtml.IHTMLDocument3 mNewDoc = NewDoc(axWebBrowser1.Document) Private Function NewDoc(ByVal mInputDoc As mshtml.IHTMLDocument3) As mshtml.IHTMLDocument3
3
6534
by: ezmiller | last post by:
So I have some code that gets the body element of another frame and then tries to dynamically write a table. The code fails when, after creating the table, I try to append it to the document. I get an invalid argument error. Here's the code.... var docBody = top.frames.document.getElementsByTagName("BODY");
1
1347
by: Kobi.Pinhasov | last post by:
Hi, I've got several places on page where I'm using the following method document.createElement to create a new element. Is there an event that I can attach to which is fired every time a new node/element added to the DOM using this method. Thanks in advance
10
4281
by: webEater | last post by:
Hello, I try the following in Firefox and other modern browsers: window.addEventListener('load', function() { document.title = CSS.getClass('fontSize'); var div = document.createElement('div'); document.getElementsByTagName('body').appendChild(div); alert(div); alert(div.style) }, true);
23
6635
by: vunet | last post by:
It is recommended by some sources I found to create IFrames in IE using document.createElement('<iframe src="#">') instead of document.createElement('iframe'). Why and what browser versions to use it? IE5 or IE6? Thanks
0
10433
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10212
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10161
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10000
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9035
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7538
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6777
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5560
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4112
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.