browser

replacing standard connection method in compiled SWT browser

Do you know how can I override method which connects to page and sends headers in SWT Browser ? ...

Will creating a function within a constructor function use more memory than referencing a prototype function?

Possible Duplicate: JavaScript: Setting methods through prototype object or in constructor, difference? I guess this is a question about the browsers implementation of closures really. I know about the numerous ways to emulate Class-like functionality within JavaScript including using various libraries. This is more a questi...

Memory Leaks in Browser

Hi Experts, Please tell me how to find out the memory leak in browser and what is the best way to solve the problem. Is there any guideline for writing javascript to avoid memory leak? And also if you can tell me some problem which you experienced related to memory leak and how did you debug and find out the solution would provide a gr...

Strategies to let a separate app talk to javascript in the browser

Here's the scenario: we have a separate app running on a computer (outside of the browser). It creates a folder with 10,000 downloaded thumbnail images. In the browser, we have a traditional browser app. It lets you browse through these images. In order to speed up the browsing dramatically, I want to let the app get the images from the...

Record webcam video to local filesystem from a browser

What is the best (and simplest!) way to record video from a webcam to the local filesystem--all from a browser? Ideally the video would be recorded in HD and then we could use ffmpeg later to convert it into the formats and sizes needed. Here are some things we've looked into: Use Flash to stream to a local Red5 server. But we've had ...

Is it a good or bad idea to start testing your pages in the IE9 platform preview?

I want to ensure my pages will look right as soon as IE9 comes out. For example, I have already noticed that the background-size in the IE9 platform preview works, but is inconsistent with chrome, chrome resizes maintaining the aspect ratio, while the IE9 platform preview distorts the aspect ratio. But who knows if this will be addres...

Android intent to open user's preferred browser

Hello everbody, I've been trying to find out how to create an intent that will open the user's preferred browser without specifying the URL. I know how to open it by giving a specific URL like this: Intent intent = new Intent(); intent.setAction(Intent.ACTION_VIEW); intent.setData(android.net.Uri.parse("http://www.google.com")); contex...

webpages and resizing browser window

Hello, I'm currently working on a webpage and I'm having troubles with Firefox when I resize the browser window. Content in the "featured" div overflows when the window is made smaller. However, this is not an issue in IE 8. I have not tried any other browsers yet. Any ideas? HTML: <div class="slider_container> <div id="featured> ...

How to create a browser plugin bundle on OS X

I have created a NPAPI browser plugin for Firefox on linux. I installed the plugin by copying the shared library into my user's profile plugin directory. I am able to build the shared library on OS X, but I am not familiar with how to create a plugin bundle that Firefox/Chrome/Safari can use. How can I create a plugin bundle that will...

How to connect webcams in the browser with Java?

Something like chatroulette. ...

Display Browsable 3D models in Browser

Statement: I have a 3D model ready in Google SketchUp Pro. Problem Statement: I need to display the model in a webpage. I need the model to be browsable (The user can navigate his way through it like on Google Earth) I need the model to be update-able (If I update something in SketchUp, I should be able to easily port changes till the...

dealing with delay in populating select options

My code tries repopulate options and select an element. Issues is populate does lot of task an repopulates 3 select boxes. My method control returns but when i try to select, options are not yet populated. This happens some times with slower systems / Browsers. (And specifically on IE) Is there a way to prevent this using jQuery or somet...

is it ok to use different css files for different browsers and load it accordingly

I am getting rid of browser compatibilty issues. so i come up with idea to load the only css according to browser. So say if user uses IE then only styleIE.css get loaded if firefox styleFF get loaded and so on. my question is it correct method if not what care should taken to avoid this compatibilty issues. because when i solve issue...

Is it possible to create a file somewhere in github via browser?

I know you can edit a file in githubs website, but I can't find if you can create or delete a file. ...

Force the browser to open an FTP Client on ftp:// link

Is possible to force the browser to open a link of type <a href="ftp://my.ftp.com">FTP </a> to the system default ftp client for examples cyberduck? ...

Code compatibility with browsers

How to check whether my code is compatible with all browsers or not? ...

How does a parser (for example, HTML) work?

For argument's sake lets assume a HTML parser. I've read that it tokenizes everything first, and then parses it. What does tokenize mean? Does the parser read every character each, building up a multi dimensional array to store the structure? For example, does it read a < and then begin to capture the element, and then once it meets ...

HTML - aligning radio buttons and text

Say you've got two simple table cells next to each other. One contains a radio button and text. The other one contains just text. The radio button's size is set to 16x16 pixels (don't ask me why, assume that it just is). The font size is 12 pixels. How do you make both labels and the radio button to line up consistently in all major br...

How does Gecko (or any other layout engine) render a document/page?

It was kinda hard to go through Gecko's documentation to see how it renders a web page. I'm doing some performance analysis for my projects across the leading browsers to see how to improve response time. I am aware of optimization techniques out there but I don't really understand their basis--which I believe would be resolved if I kne...

RenderingS​ession returns null while useing browserfield.

i want to develope appli which has browserfield to browse any url. i m using bowserfield class method from in built JDE example. in this method i m using _renderingSession = RenderingSession.getNewInstance(); but this line returns null while using on real device (curve 8520). but it is working fine on simulator. can anyone help me ...