OZONE Asylum
Forums
DHTML/Javascript
Equivalent JavaScript for FireFox
This page's ID:
29398
Search
QuickChanges
Forums
FAQ
Archives
Register
Edit Post
Who can edit a post?
The poster and administrators may edit a post. The poster can only edit it for a short while after the initial post.
Your User Name:
Your Password:
Login Options:
Remember Me On This Computer
Your Text:
Insert Slimies »
Insert UBB Code »
Close
Last Tag
|
All Tags
UBB Help
The thing I want's to achieve is draging some sort of Address from a Text File Then By the help of a javascript function parse that data and extract my needed info. IN IE Following Works But How Can I achieve it in FireFox function processDrop() { if(window.event) { var ClipBoardText = window.event.dataTransfer.getData('Text'); var broken_up_string = ClipBoardText.split(","); var firstPart = broken_up_string[0]; firstPart = firstPart.split("\r\n"); var Address = ""; var City = ""; State = ""; for(var i = 0; i < firstPart.length -1; i++) { Address = Address + firstPart[i] + "\r\n"; if(i == firstPart.length - 2) { City = firstPart[i+1]; } } var secondPart = broken_up_string[1]; alert("Address is " + Address); alert("City is " + City); alert("Rest is " + secondPart); } return false; } <div id="layer1" style="height: 200px; width: 200px; border: 1px black solid;" ondragover="javascript:return false;" ondragenter="javascript:return false;" ondrop="javascript:processDrop();"> </div>
Loading...
Options:
Enable Slimies
Enable Linkwords
« Backwards
—
Onwards »