Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Split Function

Status
Not open for further replies.

Daft69

Programmer
Joined
Nov 28, 2001
Messages
9
Location
BE
Hi,

I use the split function and it run not in Netscape but well in IE ? Is it normal ??
Netscape said : document.form1.land.value has no properties when I do
allvalue = documennt.form1.land.value.split('#');

Help me please !

Daft
 
not sure why its not working, but you could try:


stored = documennt.form1.land.value
allvalue = stored.split('#'); jaredn@subdimension.com -
 
It run not ! Netscape said stored has no propertiers !! :(
 
Maybe you have the incorrect element from the form - so it has no value or something - try it with something you know is s string first, the you will see it is not the cal to split() - but some other problem. You don't have Ns<3 do you?
b2 - benbiddington@surf4nix.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top