Forum: JavaScript / DHTML / AJAX Jun 10th, 2009 |
| Replies: 0 Views: 674 Hello everyone,
I have a table with a bunch of rows and columns. You choose an item, and then you can look at the properties of the item in a popup window. You can change some properties and then... |
Forum: JavaScript / DHTML / AJAX Jan 6th, 2009 |
| Replies: 1 Views: 1,037 After doing some googling, I found this thread:
http://www.daniweb.com/forums/thread102251.html
which was very similar to mine. I tried ~s.o.s~'s suggestion and it worked very well, and I learned a... |
Forum: JavaScript / DHTML / AJAX Jan 6th, 2009 |
| Replies: 1 Views: 1,037 Hello everyone, I've ran into something that's been confusing me. Here's my code snippet:
if (parent.scrollTop < parent.scrollHeight)
{
if(document.fireEvent){ //IE
... |
Forum: JavaScript / DHTML / AJAX Dec 29th, 2008 |
| Replies: 6 Views: 1,527 Hello again,
~s.o.s~ I implemented your solution for the regex hack for now, I was told to go this route so the project can move forward until I can research the issue with the serializer. Thanks... |
Forum: JavaScript / DHTML / AJAX Dec 29th, 2008 |
| Replies: 6 Views: 1,527 Here's what I have discovered. The content for both Internet Explorer and Firefox are the same up until:
treeContent = spanNodes.item(0).xml || (new... |
Forum: JavaScript / DHTML / AJAX Dec 24th, 2008 |
| Replies: 6 Views: 1,527 Update: I checked the response.responseText coming into the w parsers. These are the same in IE and FF. They both have the correct ></span> ending. For some reason, the DOMParser changes that into... |
Forum: JavaScript / DHTML / AJAX Dec 24th, 2008 |
| Replies: 6 Views: 1,527 Thank you for your input, ~S.O.S~. It was going to be a hack, yes. It's an internal web-app that was written for IE6, and now they wish to have it work in IE7 and Firefox. The two parsers used here... |
Forum: JavaScript / DHTML / AJAX Dec 23rd, 2008 |
| Replies: 6 Views: 1,527 Hello everyone,
I ran into an issue that I could use a little help with. I need to search a large string, match certain parts of it, and replace a certain part of the certain part. The entire... |
Forum: JavaScript / DHTML / AJAX Aug 19th, 2008 |
| Replies: 6 Views: 748 Thank you folks, and thanks Langsor. That's what I was thinking, but just wanted to make sure. |
Forum: JavaScript / DHTML / AJAX Aug 19th, 2008 |
| Replies: 6 Views: 748 I'm sorry, I should have been more clear. Let's say I already did something like
var pageInputs = getElemetsByTagName("input");
Now, i have a collection, pageInputs. So what's the difference... |
Forum: JavaScript / DHTML / AJAX Aug 18th, 2008 |
| Replies: 6 Views: 748 Hello everyone, I just have a quick Javascript question I haven't found an answer to on the net. What is the difference between
arrayName[0]
and
arrayName.item(0)
I've run across instances of... |
Forum: JavaScript / DHTML / AJAX Jul 15th, 2008 |
| Replies: 1 Views: 728 I've just received word that their window script adaptation is totally whacked, and I don't have to make it functional, another team will be working on it. Marking this one as solved, thanks for the... |
Forum: JavaScript / DHTML / AJAX Jul 15th, 2008 |
| Replies: 1 Views: 728 Hello everyone, I'm using Thomas Brattli's window script from DHTMLCentral.com. It works great in IE, but in firefox, I get some errors. First is "oWin[i].oWindow.moveIt is not a function". I don't... |
Forum: JavaScript / DHTML / AJAX Jul 9th, 2008 |
| Replies: 1 Views: 976 I ended up having one of the people responsible for the custom jsf components re-do the renderer, so sending in "displayContextMenu" results in "displayContextMenu(event)", which works great in... |
Forum: JavaScript / DHTML / AJAX Jul 8th, 2008 |
| Replies: 1 Views: 976 Hi folks, quick question for ya. I'm working on getting a custom context menu to work in Firefox (it was written for IE with behaviors) and I can get the menu to pop-up, but i'm getting a javascript... |
Forum: JavaScript / DHTML / AJAX Jul 2nd, 2008 |
| Replies: 2 Views: 2,045 Thank you! That's exactly what I was looking for.
Jmasta |
Forum: JavaScript / DHTML / AJAX Jul 2nd, 2008 |
| Replies: 2 Views: 2,045 Hello everyone, I've run into a brick wall with this problem. I've been given a huge webapp that was designed for IE6, and I need to make it work(and look good) in Firefox 3.0 and IE7. So far, it's... |