Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
3answers
357 views

How to render HTML element without using web browser?

Is there a way how to draw specific HTML element content on a canvas without using any web browser control ? With this code I'm rendering the element to the form's canvas (just as an example). It ...
5
votes
2answers
3k views

Handling key events on WebBrowser control

I am using the WebBrowser control in a C# application and want to handle all key events while the WebBrowser has the focus, regardless what individual content element (input field, link, etc.) is ...
4
votes
4answers
43 views

naming conventions for html elements

I have a general query regarding name of html elements. I have seen in the past developers placing an prefixes before the id of their html elements eg for a div element -> dvMyDiv I have seen a mix ...
4
votes
2answers
661 views

How to click ahref by programmatially with HTMLElement control

i m doing an automation program. I load a webpage into my windows form and load it in WebBrowser control. Then, I need to click on a ahref from the WebBrowser programatically.. i wonder how i do it.. ...
4
votes
2answers
8k views

C#: HtmlDocument object has no constructor?

What's up with that? It seems the only way to get an working HtmlDocument object is copying the Document property of an mshtml/webbrowser control. But spawning that is sloooooooooooow. I'd like to ...
3
votes
3answers
292 views

Partially select checkbox with javascript

Is there a way using Javascript and HTML(5) to make a checkbox be partially selected, like the checkboxes in a program installation menu when you select only some of the sub options?
3
votes
2answers
835 views

c# webBrowser.Document: reloading page after postback

I am working on a simple application that automatically browses in a page that contains two dropdown menus and a button. The page looks like this: ------DropDown1------- ...
3
votes
2answers
1k views

How to hide HtmlElement in webbrowser control

I have a webbbrowser control that navigates to a page that contains an image, and i want to hide or delete this image from my webbrowser. I've tried to set on DocumentCompleted event the method below ...
3
votes
1answer
929 views

C# webBrowser control cannot find htmlElement after Ajax webpage update or in frame

Using webBrowser control in a winForm. but when the webpage is updated by Ajax or in a frame, I cannot use webBrowser1.document.getElementById et. to find that htmlElement. the element also won't ...
3
votes
4answers
742 views

Building HtmlElement object trees

I'm using the MSIE WebBrowser control in a C# desktop application and am looking for a way to build and maintain trees of HtmlElement objects outside of this control. I am trying to quickly switch ...
2
votes
3answers
92 views

jQuery hide div function

Is there any function for hiding 'DIV's or other html elements on right click, some tutorial, script, simple code javascript or jquery. Example: when is click on link or tag or 'li' or 'Ul' or 'a' ...
2
votes
2answers
78 views

Why HTML input element gets resized by the browser?

I'm trying to make a simple search form on my website and I'm using the input HTML element. But it is acting really weird. It gets resized by the browser no matter which size I specify in the style. ...
2
votes
1answer
191 views

How do I add an event listener to my button created in C# for IE BHO?

In my IE BHO I create a input button element using: var button = doc.createElement("input"); button.setAttribute("value", "myButton"); //next line gets an error ...
2
votes
1answer
1k views

WPF Net3.5 WebBrowser HTMLElement Mouse Click

Ive been using a WIndowsFormHost to host a Windows.Forms.WebBrowser control and adding a event handler to fire when the mouse is clicked on a HTML element inside the control ...
2
votes
1answer
618 views

getting IHTMLStyle3 from the Dom of HtmlElement in IE

I've got a System.Windows.Form.WebBrowser control on a form. I navigate that browser object to a url. Once the page has finished loading, I'd like to analyse various aspects of the page that loaded. ...
2
votes
5answers
5k views

Removing HtmlElement objects programmatically using C#

In a WebBrowser control, how do I remove HtmlElement objects? There are no methods in the HtmlElement class to accomplish this. As a workaround, I can create a "dummy" HtmlElement (without inserting ...
1
vote
1answer
30 views

Get HTMLElement with Prototype selector

Prototype selectors $, $$...etc return extended object Element. But some times I need simple, not extended, HTMLElement object. How can I get it using Prototype selectors. Thanks.
1
vote
0answers
34 views

Re-Finding an Html Element on a Page (Over and over and over and over…)

I am visiting example.com, and programmatically finding certain HTML Elements that I want to "track" -- i.e., I revisit the page regularly to see if the elements' text changes. The million dollar ...
1
vote
3answers
114 views

HTMLElement prototype in IE7

I wish to check if an argument passed to my function is an HTMLElement, using the instanceof operator. I know that this doesn't work in IE7, because AFAIK IE7 doesn't define HTMLElement. I figured: no ...
1
vote
1answer
84 views

How to replace whole HTMLElement's text to something else?

Here's the example. webBrowser1.Document.Body.InnerHtml contains: <img id="image1" src="myImage.gif"> and in my MyWebBrowser class I want to replate whole img tag to some text, for example ...
1
vote
1answer
133 views

jQuery outerHeight is not working when reattaching an element

I create div containing an image and attach it to an iframe.To determine the height iframe with the div, I use the jQuery.outerHeight on the div by attaching it the body. The first time I do it, it ...
1
vote
1answer
151 views

HtmlElement.Parent returns wrong parent

First things first, I would like to thank you in advance for any help or insight you might have on this issue - this community rocks. Having said that ... I've run across the problem outlined in the ...
1
vote
1answer
95 views

JavaScript - Manipulation HTMLElements inside JS object

Greetings everybody. In my current project, I've encountered a somewhat strange behavior (from my point of view) when I'm trying to alter the properties af a html element. In my code, a have defined ...
1
vote
1answer
622 views

Why does HtmlElement's GetAttribute() method return “mshtml.HTMLInputElementClass” instead of the attribute's value?

Why does HtmlElement's GetAttribute() method return mshtml.HTMLInputElementClass instead of the attribute's value, when I'm trying to obtain the value of a form's action attribute? ...
1
vote
4answers
830 views

Is it possible to sendkeys / Post Message directly to a HtmlElement rather than to a webbrowser control?

I would like to send keys to a c# web browser control element directly, not just the window with the correct focus. Right now I am able to send a key using PostMessage and documentHandle and focus ...
1
vote
2answers
1k views

Automate Form login in website using Webbrowser control

I'm automating form login in a certain site using the WebBrowser control. Having the client id of the textbox, password and button login, I'm able to do it. The question is, can I still do it without ...
1
vote
1answer
232 views

Element offset and client positions in BHO

How to find the position of the HTMLElement in BHO(C#)? I need both offset position of the element in the page and the client position of the element i.e. position of the element from the Left-Top of ...
1
vote
1answer
3k views

Find specific data in html with HtmlElement(Collection) and webbrowser

I want to find a div with the class name XYZ then in it i want to loop through a bunch of elements named ABC. Then grab the links (a href) inside and possibly other information. How do i find the div ...
0
votes
2answers
37 views

JavaScript Renaming Form Image Input Name

I am developing this for use in Internet Explorer 8 (because at work we have to use it). I have a page that has a table withing a form. The table has a button to "clone" rows, "AddScheduleRow()". That ...
0
votes
1answer
30 views

execute javascript attached to htmlelement in webbrowser control

I need help on how execute javascript attached to htmlelement in webbrowser control When typing in an input First textbox, a javascript code execute OnChange for the particular textbox, and display ...
0
votes
3answers
76 views

HTMLElement.toString() only works in Chrome

I have found an error in FireFox and Opera.(I'm running Debian Whezee, Firefox 9.0.1, Opera 11.60, Chrome 16.0.912.63) When you type something like this: var a = document.createElement('a') ...
0
votes
1answer
97 views

COM registration error (80040154 Class not registered) using HTMLTextAreaElement in VB.Net

I am trying to insert text into a text area in a webpage using the following code: Dim webTextArea As New HTMLTextAreaElement WebTextArea = Main.WebBrowser1.Document.GetElementById("name of web text ...
0
votes
1answer
37 views

javascript class change to asp:button control not available on server side

So I have looked for days for a solution online to this, and I've tried different ways of doing this, but can't seem to find a complete solution. So please HELP! I have a form that a user is ...
0
votes
2answers
18 views

Checking if a Variable has been assigned an Element or a String

I am building a small library that involves object manipulation, and there will be an input that might be assigned an ID of an element (which will then use document.getElementById), or something like ...
0
votes
3answers
82 views

Get HtmlDocument after javascript manipulations

In C#, using the System.Windows.Forms.HtmlDocument class (or another class that allows DOM parsing), is it possible to wait until a webpage finishes its javascript manipulations of the HTML before ...
0
votes
4answers
88 views

Add text before or after an HTML element

If i have an HTML element like <div> with some text inside or another elements can I add before or after this div some text data without an html element, just plain text? I'd like to use only ...
0
votes
3answers
412 views

JSLint: “'HTMLElement' was used before it was defined.”

JSLint: "'HTMLElement' was used before it was defined." if (element instanceof HTMLElement) How do I fix this? Do I have to add an exception or ignore it?
0
votes
0answers
203 views

Get HtmlElement to navigate WebBrowser to a new page C#

I am trying to create a WinForms application in C#, that would open a page in a WebBrowser. The user will enter a search string in a textBox and click search. After that the program will read the data ...
0
votes
4answers
127 views

Replace text with HTML element

How can I replace a specific text with HTML objects? example: var text = "some text to replace here.... text text text"; var element = $('<img src="image">').event().something... function ...
0
votes
1answer
98 views

Why IE Developer Tools seems to be more descriptive than FireBug in this example?

When I call this line: Object.getOwnPropertyDescriptor(HTMLElement.prototype,"innerHTML") For FireBug it returns: >>> Object.getOwnPropertyDescriptor(HTMLElement.prototype,"innerHTML") ...
0
votes
1answer
444 views

InternetExplorer being set up as __ComObject instead of SHDocVw.InternetExplorer

I'm having a problem with the InternetExplorer in SHDocVw.dll. I also have mshtml.tlb referenced (while googling, I did read 1 comment that said I should have mshtml.dll referenced, but that this ...
0
votes
1answer
225 views

Manually selecting web page radio button

i want to programatically select a radio button in code. The radio button lives on an internal webpage. I am trying so far like this, HtmlElement rButton = b.Document.GetElementById("nameOfButton) ...
0
votes
2answers
226 views

Create my own classList object when the browser does not implement it itself

I have JavaScript code that adds and removes classes using the classList object. The code is up and working correctly as expected until I received complaints about it because it does not work in Opera ...
0
votes
1answer
1k views

How to inject CSS in WebBrowser control?

As per my knowledge,there is a way to inject javascript into the DOM. Below is the sample code that injects javascript with the webbrowser control: HtmlElement head = ...
0
votes
2answers
355 views

How to use webbrowser control to turn the div visibility into visible?

I'm currently using System.Windows.Forms webbrowser control to automate a webpage. Everything works fine to manipulate the htmlelement through webbrowser.document. However unfortunately i have to ...
0
votes
0answers
301 views

how to use webbrowser control to trigger this html element javascript function?

When this button is clicked, it will prompt out a confirmation message. However, when i automate mouse click event with webbrowser.invokemember("click"), it doesn't has any respond. Below is the html ...
0
votes
4answers
377 views

Unable to get htmlelement in winforms webbrowser control

I'm developing automation program using winforms webbrowser control. I am able to get the htmlelement at the first few web pages. But i'm unable to get the htmlelement from certain pages and i'm using ...
0
votes
1answer
332 views

How to get the HTML element in an new windows triggered by javascript?

i'm using WebBrowser control in Windows Forms App to automate a website and do some actions, so i need to know the HTML elements in the website(for example, textbox id, button id). Everything is ...
0
votes
0answers
109 views

Programmingly change OffsetMousePosition in HtmlElement

I'm trying to automate a button click on my webpage using C#. Here's what I did : HtmlElement button = webBrowser1.Document.All["INPUT"]; //get the button button.InvokeMember("click"); //invoke a ...
0
votes
2answers
671 views

Convert IHTMLDOMNode to IHTMLElement?

I would like to convert an IHTMLDOMNode to IHTMLElement in C#, I have tried the following: IHTMLElement tempElement = node as IHTMLElement; //node is a instance of IHTMLDOMNode internface However, ...

1 2