Parsing Text Not Working In 3D Projection Script?

Jul 31, 2011

The problem is I have a script that draws 3d models that are in the OBJ Wavefront format onto the canvas. I have narrowed the problem I have down to a small section of the code, the code creates an array within an array to store the X,Y and Z co-ordinates, there is also some code that stores the linking of the vertices. The arrays are as arranged as follows:

coordinate
0
X
Y
Z
1
2
3 etc.

the vertices linking array is as above but with point 1 and point 2 as opposed to X,Y and Z. Within the array X,Y and Z (and also points 1 and 2 in their array) are numbered 0,1 and 2.

the code is this (I'll show it in context):
function drawmodel() {
var coordinate = new Array();
var edges = new Array();

[Code]....

View 1 Replies


ADVERTISEMENT

JQuery :: Parsing Ajax XML Reply Not Working On IE 6?

Jan 27, 2010

I have the following simple ajax call in a .ready() function :

[Code]...

View 1 Replies View Related

Parsing Text With Markup Into Nodes

Jul 31, 2004

I'm trying to figure out how I can take user input from a textarea and insert it into a table as HTML. An example:

<script type="text/javascript">
<!--
function echo_input() {
var input = document.getElementById("user_input").value;
var cell = document.getElementById("display_area");
cell.childNodes[0].nodeValue = input;
}
//-->
</script>

<form>
<textarea id="user_input" name="user_input" onkeyup="echo_input();"></textarea>
</form>

<table>
<tr>
<td id="display_area">test</td>
</tr>
</table>

The childNodes[0] that the script keeps editing is the text node that starts out as "test". The problem is that I want the text that I put in the table to be parsed if any markup is in it (so that a <br /> will become a break, and not literally printed out as "<br />"), something that the DOM automatically escapes. It seems a very cumbersome means of doing this is to write a javascript parser, which would go through the text and create different types of nodes as it stumbles upon markup.

View 3 Replies View Related

String To Array Parsing - Split A Piece Of Text

Aug 11, 2010

How can I split a piece of text like the following : /mysite/subSection into an array like the following :

array(
[0] => mysite
[1] => subSection
);

View 1 Replies View Related

JQuery :: Parsing XML Using "find()" Has Stopped Working - 1.3+

Jul 15, 2009

I have been using jQuery 1.2.6 to parse XML and find specific nodes. However, when I simply change the jQuery version to 1.3.2 the following fails to work in IE, though still continues to work fine in Firefox.

Below is a simplified test case.

View 2 Replies View Related

JQuery :: $('<span>').text('new Text') Not Working In IE

Aug 5, 2010

Has anyone seen this before..

var myText = 'blah';
$('<span>').text(myText);

The above correctly sets the text of the span to blah in all browsers except IE. The only way I've gotten it to work in IE is...

$('<span>' + myText + '</span>')

Not the worst hack, but all the extra typing is adding up.

View 5 Replies View Related

Rich Text Help Not Working?

Apr 12, 2011

Ok I have followed the instruction but its still not working. Ive made sure all of the files connect properly. The only thing I can think of that I might be doing wrong is where to attach the script on the text box so here is what I have maybe this is wrong

[Code]...

View 1 Replies View Related

Set Text In A Textarea But It's Not Working?

Jun 16, 2010

i'm trying to set text in a textarea but it's not working.

Code:
var emailbodyt='test';
alert(emailbodyt);
var txtArea = document.getElementById('emailbody');

[Code].....

View 14 Replies View Related

Flashing Text, Working Once On A Page But Not More?

Apr 26, 2009

I have this within the <head> tags:

<body onload="changeColour('blink');">
<script type="text/javascript"><!--
function changeColour(elementId) {
var interval = 500;

[Code].....

It works fine once, bu

View 1 Replies View Related

Margin Not Working On JS Text Slideshow?

Apr 6, 2011

My code works great except that the margin and padding CSS isn't doing anything. Which doesn't make sense to me because the font size, style, and alignment is affected by the CSS. Does anyone know why this is??

<h2 class="sidebar-heading">Testimonial:</h2>
<html>
<head>
<title>Testimonies</title>

[Code]....

View 2 Replies View Related

JS To Resize Text Across Page Not Working

Jun 10, 2011

I have a page that needs to have accessibility features for people with poor vision, namely, I need them to be able to resize the text across the page.

[URL]

I know you can do this through the browser, but my company wants me to have it in the page.

Also, I've used most of the code from our head office, but I can't figure out why it won't work on my page.

ps. Also most of the other javascripts on the page are not working (like the contrast, but I'll tackle one thing at the time).

View 11 Replies View Related

Xml Parsing

Jul 9, 2006

i have an ajax script that requests data from a database. Some of the fields contain html. I would like to know the easiest way to parse an xml file that looks like such:

<response>
<poster>Poster name here</poster>
<title>Title goes here, may contain a link</title>
<text>html content here</text>
</response>

i can't seem to figure out an easy way of parsing all the contents between a tag, what is the easiest way? I'm trying to fix a script that doesnt work when the text area contains html and i can't get it to work.

View 3 Replies View Related

JQuery :: Toggle Text Function Not Working In IE7

Nov 8, 2010

Working with a script I had found/pieced together online. It toggles the display of certain content along with selected text (i.e., "view/hide"). It's working great in all browsers except for IE7 (go figure). The showing and hiding of the content works, just not the switching out of the values for "show/hide".

The code is below:

View 6 Replies View Related

Alter Text Size Working In IE But Not In FF Or Chrome

Apr 11, 2011

I've written a function to change the font, this is working in IE but not in FF or Chrome. No errors come up in Firebug. Once this is working in both browsers I will change the function to gradually increase the size of the font to make it look as if the font is growing. This is why I haven't just assigned a class to the text. URL of the site with the script is [URL]

[Code]..

View 2 Replies View Related

Change Text/Value On Button When Clicked Not Working In FF?

Dec 4, 2010

Basically I am looking to show/hide a DIV with the click of a button.The script work accordingly in IE but fail in FF.I am sure I am the problem here.

Code:
<script type="text/javascript">
function toggle(box) {

[code]....

View 1 Replies View Related

Javascript Text Rotation Not Working In Firefox

Feb 10, 2006

Looks fine in IE and Opera, but is designed to write into a textarea instead of the <div> if the brower is not IE4+ (why is it working in Opera?) so on Firefox you can see the ugly textarea....

Is there a way to either turn off the Javascript in Firefox so it doesn't work at all, or test specifically for that browser (it's not testing for anything but IE right now as I understand it) and put the text into an absolutely positioned element? Code:

View 2 Replies View Related

Parsing DOM With Javascript

Oct 14, 2005

My problem is that i need an algorithm parse parse HTML.
For an HTML page, my script has to parse all tags to get all forms
values, even if there is frame, iframe, ...
How can i do such a script ?

View 3 Replies View Related

String Parsing

Jun 21, 2006

I can't figure out how to parse the following string and to decompose
it into substring.

CuttingFlags--C500F2*#C503F3*#C509F10*#C506F2*F15##

Basically, each C should go in an array. and for each C I should have
an array of F.

CuttingFlags array contains C500, C503, C509 and C506

C500 contains F2, C506 contains F2 and F15.....

Can you help to parse the string first?

View 2 Replies View Related

JQuery :: Xml Parsing In IE 8?

May 3, 2010

I wrote something like:

var table=Array();
$.post("script.php", {arg1: a}, function(xml) {
$(xml).find("tagname").each(function() {
table[table.length]=$(this);
});
});

The code works OK in Firefox and Google Chrome, but it fails in Konqueror (khtml) or IE 8.0: the resulting array is empty although the xml read by Ajax call is OK. I tried also with "$("tagname", xml).each()" - same result.

View 4 Replies View Related

Parsing Xml Across Domains?

Jun 22, 2011

I'm trying to work with XML DOM for the first time as I need to grab a value from a SOAP request. I've been following this: [URL], which says modern browsers won't parse xml files from another server for security reasons. How would I got about doing this then? I've been using the price of crude oil as an example [URL] and want code portable enough to put on something like Tumblr, so I don't think I can actually save the file locally first.

View 13 Replies View Related

Parsing An IP Address

Jan 24, 2008

I am trying to split an IP address into it's 4 octets using a RegExp and assigning the result to an array but it is not working. Here is my function so far:

<script type="text/javascript">
function lastoctet(ipaddress){
var ipoctets = new Array();

ipoctets=ipaddress.split(/(.)/g);
alert(ipoctets);
}
</script>

View 1 Replies View Related

XML Parsing And Compatibilities, Mac/IE 5

Apr 21, 2006

I have a project coming up this summer that will include having to run a quiz like application from several machines disconnected from the internet.

I was hoping to be able to have all of the quiz data in an XML file and the actual quiz page as html/js. The machines will be using IE5/Mac.

Unfortunately, I won't be able to get a hold of a machine for testing until very close to the deadline, so I need to know what technologies will and wont work for the browser.
What kind of compatibility issues (if any) should I be weary of?

View 5 Replies View Related

Parsing Url Parameters

Dec 4, 2002

I have a url with parameters like the following:

http://test.com/mycode.html?xyz&myvar=value2

I need to endup with the following available to JS

base_file = mycode.html
parameter1 = xyz
parameter2 = value2 or myvar = value 2

What is the easiest way to parse the query string out of the url? When I use self.location I get everything.

View 8 Replies View Related

Parsing Data Out Of URL

Oct 3, 2011

Lets say I am on one of the following pages:

[url]
[url]
[url]

I would like to get the value of id (i.e. 2).

How to do so? Also, should I start with window.location.search or window.location.href?

View 5 Replies View Related

JQuery :: Focus Text Input Field Not Working?

Jun 3, 2010

I'm using thickbox for getting a popup at my screen where the user can write info into inputfields.Only I want that the first inputfield is selected/focus.I have use the following codes but nothing is working.

$("input[name=klantnaam]").get(0).focus();
$(document).ready(function(){
$("input[name=klantnaam]").get(0).focus();

[code]....

View 3 Replies View Related

Parsing <content:encoded> Through JS

Apr 8, 2006

I am trying to parse a feed using JS and have stucked on the <content:encoded> tag. I have tried getElementsbyTagName but its not working.

View 7 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved