Questions tagged [nodename]

41 questions
158
votes
4 answers

Difference between .tagName and .nodeName

What is the difference between $('this')[0].nodeName and $('this')[0].tagName?
Kdniazi
  • 1,581
  • 2
  • 9
  • 3
35
votes
2 answers

jquery nodename returning undefined

This code isn't for anything in particular. I'm just trying to successfully get the tagName or nodeName of an element. However, when I run the following code, I always get an alert saying "undefined". I'm wondering if it's because this function…
Matthew
  • 15,282
  • 27
  • 88
  • 123
8
votes
3 answers

a.nodeName is undefined Jquery error

a.nodeName is undefined I've looked this up but the explanations didn't seem at all clear to me. function deleteThisRow() { $(this).closest('tr').fadeOut(400, function(){ $(this).remove(); }); } blah blah blah …
Barney
  • 1,820
  • 5
  • 29
  • 50
8
votes
2 answers

Subgraph has same node, how to make unique

I create dot file by my perl script. Here is subgraphs which contains same node. eg: subgraph{aa->bb->cc;} subgraph{dd->bb->ee;} I know those subgraph use same namespace, so my result output is a mess. In each subgraph, I can make them unique, like…
eexpress
  • 155
  • 1
  • 10
4
votes
5 answers

Replace Node Name

Is it possible to replace a nodes name? Like: HTML: Text Javascript: var element = document.getElementById("element"); element.nodeName = "b"; As I see it's not working, if it's not possible in this way, then how…
Adam Halasz
  • 57,421
  • 66
  • 149
  • 213
3
votes
1 answer

how to get node name in Oracle SQL extract() with xPath (10g)

Here is a XML file: 2 3 4 How to get the tag name "C" through xPath. The function name() does not work here in extract. It reports Errors: ORA-31011: XML parsing failed ORA-19202: Error…
Frank
  • 1,315
  • 7
  • 24
  • 43
2
votes
1 answer

JTree set node name as one of UserObject attribute

I'm using JTree to create tree view and add node to its root as following: String nodeName = "node1"; DefaultMutableTreeNode child = new DefaultMutableTreeNode(nodeName); root.add(child); The UserObject for each node now has type of String. It…
baizen
  • 304
  • 6
  • 14
2
votes
1 answer

Convert #text from getNodeName to string

I am parsing a XML file as follows: 1 314 Here's my code: NodeList titleList = list.getElementsByTagName("ROW"); Log.w("nodeName is…
nyus2006
  • 411
  • 6
  • 12
2
votes
3 answers

Uncaught TypeError: Cannot read property 'nodeName' of null

I have a code: (function($) { $(window).scroll(function() { if ($(this).scrollTop() >= 50) { // If page is scrolled more than 50px $('#return-to-top').fadeIn(200); // Fade in the arrow } else { …
Tomasz B.
  • 59
  • 1
  • 2
  • 8
2
votes
5 answers

IE6 and IE7 Sometimes Have A jQuery Bug With 'nodeName' is null or not an object

I'm having a problem where a jQuery setting against an .html() property on a selected element is returning the error 'nodeName' is null or not an object. This only occurs on IE6 and IE7, but not FF2, FF3, Opera (latest Nov 12,2008) or Safari (again,…
Mike McKee
2
votes
1 answer

Can we vary the text size along with node size in R-igraph?

Can we vary the text size along with node size in R-igraph? If yes, what attribute we can use? Any example? (By text I mean the node Name) For example I have plotted above network using igraph function as…
N D Thokare
  • 1,703
  • 6
  • 35
  • 57
1
vote
1 answer

How can I push from my local repository to my server via terminal?

I have a local git repository on my mac. I push my commits always to my git repository on github. Now I finished my work and I want to push everything to my clients server (linux). I follow this tutorial…
peace_love
  • 6,229
  • 11
  • 69
  • 157
1
vote
0 answers

Appdynamics instrumentation for Tibco - how to configure dynamically unique node name for each JVM

We are instrumenting java agents on Tibco. There are few JVMs ob each server and we are trying to configure unique node name (since which ever JVM starts first we get data only for that JVM). We tried to add the following in the startup command in…
ygillat
  • 11
  • 1
1
vote
0 answers

KNIME: how can I read/get a node name (which was manually written) with another node?

I have put names in each of my nodes. Now I want to create a custom log including my custom names for nodes. I need to read or get the name of the node with another node/variable/other. How can I get this done?
1
vote
1 answer

What is a node name? how do i rename it? Oracle Database Client

I've been trying to install Oracle Database Client 12c and no matter what settings i select, i keep getting the error: PRVG-11322 : One or more node names "px_dev004" contain one or more of the following invalid characters "_" before the…
Alex L
  • 21
  • 1
  • 4
1
2 3