html

Using a flash drawing program to create dynamic HTML possible?

I am interested in developing an application where people can draw the background to their personal homepage using a generic flash drawing program (like graffiti app on facebook.. something very simple). I have little/no experience with flash, but I assume I could simply output the drawing as an image file and have that be the background...

How to force <noscript> to be inline & inherit CSS styles?

Using <noscript> inside of another tag seems to cause it to take on its own style (that is, none), and forces the text inside to take its own line (even if display:inline is set with CSS). Is there any way to avoid this, or a workaround to use instead? Here is what I mean: http://www.webdevout.net/test?01I <!DOCTYPE html PUBLIC "-//W3C...

How can I send information from one html page to another?

I want to create an html page which contains a text box. When I am given input and the Enter key is pressed, I want it to go to another html page and display the typed keyword. How can I do this? ...

iphone application with HTML

I have an iPhone applcation in which I want to take facebook user's friends name. I got that friend list in an array. Now I want to display this array value in htmlpage. Later this html page display on iphone screen. So how can I call the friendslist from HTML page and display the name one by one. please help me. ...

Javascript Refuses to Call ActiveX Method, Agrees to Call Another

Hello, I have an ActiveX object which extends some functions. I have a web page that loads the ActiveX object and calls its methods in Javascript. The ActiveX object has two method; the problem is that Javascript can successfully call one of them but fails to call the other; citing Object doesn't support this property or method which is ...

JavaScript dialog box / context menu for text areas

I am working on a project at the moment that requires a dialog box or context menu to display when the text in the box matches a certain regex pattern. For example, if I was to type @user into the text area, a dialog box would show up where the cursor is or just below the typed word containing Ajax generated list of possible matched use...

ScrollIntoView For Table Row Not Working in IE 8

Hi, Can someone please explain why the following does not work in IE8. Basically i'm just trying to scroll a Table Row into view contained within an overflow DIV. Code: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt; <html> <head> <script language="javascript" src='scrip...

how to save a sound object to local file for play later in adobe air ?

in my application , I want to download a mp3 file for remote server ,then play it . now I'd like to save the sound to local , for play it from the file later , just like a cache . I've tried to extract the raw data to a file when the sound object load complete , sound.addEventListener(air.Event.COMPLETE, function(event){ var cacheFileS...

CSS: Absolute Position and Z-index

Hello, Is z-index only used when you set an element's position to absolute or it can also be used with an element having position set to relative? Thanks ...

Buttons with images in plain HTML / CSS

Hi, is there a way to add an image to a regular <input type = "button" /> besides the text? ...

How to get selected text in a HTML Input Text Box

Hi All, I would like to get selected text from HTML Input Text Box including character positions. Please help me. ant. ...

How to deal with floated elements?

Hello, If there are floated elements in a parent element, they parent element looses its shape or has no height. How to deal with this problem? Thanks ...

How to convert html to ASP.Net write.RenderBeginTag type code

Hi I have a nice set of html and now I need to use RenderBeginTag, RenderEndTag type of code in my custom control render method. Is there any tools for converting html C# code? It's just too much work for nothing, if I start coding this manually. ...

How can I send a form's contents over e-mail with JavaScript?

I've got a feedback HTML form, the results of which I need to send to an e-mail address. How do I do that in JavaScript? ...

Javascript: Greasemonkey access violation setValue

I'm trying to create a generic function that will execute piece of code on the NEXT reload of a page. This is called by onPageLoad({ onLoad: function() { code to call on next page load goes here } }); The only way I can see of doing this in greasemonkey is to set the whole onLoad: function as a string and set it via GM_setValue then re...

How to get selected value of a html select with asp.net

I have code below: <select id="testSelect"> <option value="1">One</option> <option value="2">Two</option> </select> <asp:Button ID="btnTest" runat="server" Text="Test it!" onclick="btnTest_Click" /> I need to get selected options' value on postback. How can I do this with asp.net? ...

Merge cells using javascript

I have googled merge+cell+javascript but did not find any suitable code to implement merge cells in a table. Is there any guideline by which I can make a feature like MS-WORD Table Cell Merge using javascript. Looking for your advice. Thanks. ...

How to test your web applications on mobile?

Hi, I don't have money to buy mobile phones, iPhone, etc, but I do want to make my web applications available to mobile devices. Are there some software to stimulate these devices, or what should I do? ...

how to create an "briefing" iframe on top of the page

Hi, The purpose is to let people embed my iframe at a certain size say 100*100, but then per user clicks this iframe should resize itself to the page size and back. This should be independent of the structure of the HTML embedding the iframe (if possible). Is it doable? Guy ...

Counting how many columns and rows in table of html file.

How can we find how many columns and rows are there in the html file ? How can we count that how many td tags are there in the html file ? ...