CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: =vd=

Search: Search took 0.01 seconds.

  1. Replies
    1
    Views
    1,002

    Re: How to feel iframe dynamically

    I find ONE way to solve my problem:

    document.frames[0].document.open();
    document.frames[0].document.write(root.innerHTML);
    document.frames[0].document.close();

    May be it will be helpful to...
  2. Replies
    1
    Views
    1,002

    How to feel iframe dynamically

    I need to create <iframe> in document and fill it some data.

    I try to do it using folowing code:


    ifrCont = document.createElement("IFRAME");
    ifrCont.src = "";
    ifrCont.height = "100px";...
  3. Problem with AJAX in FF:synchronous request doesn't work

    I have folowing AJAX connector:



    function ajaxConnect(url, postData, callBackFunction, mode) {
    var xmlObj = new Object();
    if (window.XMLHttpRequest) {
    xmlObj = new XMLHttpRequest();
    }...
  4. Replies
    7
    Views
    2,098

    Re: Can I manually set selection in document

    This code is the 1st realy working thing for IE, I find, thx.

    ... But Range object in IE can be created only for <input> or <textarea>:(
    And if I need to select text in <div>,<p> or another DOM...
  5. Replies
    7
    Views
    2,098

    Re: Can I manually set selection in document

    Sorry for editin' my 1'st post. I make apology to u ...




    But I need to SET selection on page, not GET it.
    I wanna to select some word on the page, (word with wrong spelling for ex.)
    I know...
  6. Replies
    7
    Views
    2,098

    Re: Can I manually set selection in document

    How i can do it? In FF and Opera it's ok, but IE: how i can do it in IE?

    THX
  7. Replies
    7
    Views
    2,098

    Can I manually set selection in document

    Can I manually set selection for some part of document?
    ...in other words somethin' like 'setSelection()' opposite for 'document.getSelection()' method.

    In DOM Level 2 specification i find Range...
Results 1 to 7 of 7





Click Here to Expand Forum to Full Width

Featured