html

Javascript library/framework/widget to allow user to move and resize divs on page

Hi, I am looking at creating a page that the user can move around as they please...very similar to iGoogle. But in addition, ideally, I want the user to be able to resize the components. I've done quite a bit with jQuery in the past am not against the idea of using that, seeing as it already has the draggable and resizable options, tho...

Using Qt to read and parse html files with QWebKit?

I would like to read and parse certain elements of html files but I'm not interested in rendering it in any way. Basically I would like to go through all my div tags and get some of its style attributes. This is what I've done so far: QWebPage page; QWebFrame * frame = page.mainFrame(); QUrl fileUrl("localFile.html"); frame->setUrl(fil...

write html content from javascript

There's one thing I want to do with javascript, but don't know how. In a perfect world it would look like this: <p>My very cool page!</p> <script type="text/javascript"> document.write('<div>some content</div>'); </script> And this script would insert <div>some content</div> right before (or after, or instead of) script tag. But i...

link with image

i have list of links link1 link2 link3 how can i add an image left on each link with css style not html tags? ...

create Html anchor to file on the c drive

H could you tell me how to create a link to a file on the c drive(local machine) or a link to download a file from the hard drive this doesn t seems to work <a href="C:/Documents and Settings/Giga/My Documents/NetBeansProjects/JavaRssFeed/RssFeed/build/web/WEB-INF/Xml/Gaetano Feed.xml" class="font18">C:/Documents and Settings/Giga/My...

Problem with looping a video in Flash

I am trying to loop a video and i am having some issues with this in flash. You can view the video here: http://www.healthcarepros.net/travel.html Here the specific code for the flash video: <script language="javascript"> if (AC_FL_RunContent == 0) { alert("This page requires AC_RunActiveContent.js."); } else { AC_FL_RunContent...

How can I not render a button in my view if a given property off my model has no value?

I'm new to web development. In my view, I want to conditionally show a button if Model.TemplateLocation (which is a string) is not null or empty. Below is the code that is rendering the button currently: <div class="WPButton MyButton"> <%=Html.ActionLink(Model.TemplateLinkName, "DownloadTemplate", "ExternalData", new ArgsDownloa...

Writing contents of file to HTML page with Javascript

I'm using graphviz to generate a client side imagemap, which generates both the image file and a text file containing the map HTML code. Is there anyway I can dynamically read this file and write this map information onto the HTML page when it loads? ...

Place a div over an activeX object

I have a div box that needs to pop up over an ActiveX object, but it seems that an ActiveX object has an infinitely high z-index, even if when I set that index to be low. My div box continues to show up under the ActiveX object. Any ideas? ...

Forcing images to not wrap

I can't touch the html theme but I have access to the css files. <div class="photos"> <img src="a.jpg" alt="" align="left" /> <img src="b.jpg" alt="" align="left" /> <img src="c.jpg" alt="" align="left" /> //align makes the images wrap </div> Unfortunately I can't remove align="left" from the images otherwise this CSS sn...

how to export documentation from C# classes into HTML?

how to export documentation from C# classes into HTML? ...

Three vertically stacked DIVs with scrolling middle

Is it possible to stack three DIVs vertically and have just the middle div scroll vertically? I don't want to use pixel heights, though, because the DIVs are inside of a dialog box that is resizeable. Something like this (pardon my lousy ASCII art): +-----------+ | Header | +-----------+ | ^| | || | Scroll || | ...

IE: iframe w/ invalid url and floating divs

Hi All, I've encountered a very interesting issue with IE + iframes + invalid urls + floating divs. I have a floating div (well not floating with css 'float' but floating as in a higher z-index). This floating div shows over the top of the iframe. However when we try to load an invalid url in the iframe then the iframe gets shown o...

Do you know best site on Net to learn XHTML 1.0 strict , Like other than W3schools.com but with better and latest content?

Do you know best site on Net to learn XHTML , Like other than W3schools.com but with better and latest content? I have to link some friends who want to learn HTML? I like the "Try it editor" of W3C schools but not the content. I need semantic discussion also. what is the element all about and what is the semantic value, even if's it's v...

Webpage background scrolls with content

I have a webpage with a static CSS background, but the content is longer than the height of the image. This causes whitespace at the bottom after the image ends. How can I make the image scroll along with the view of the user's screen? Thanks in advance! ...

difference b/w extentions ?

What is the difference b/w these extentions. 1. *.htm or *.html //HTML 2. *.jpg or *.jpeg or *.jpe //Picture format 3. *.pl or *.plx //Perl Thanks, ...

how to using jquery get select element has MULTIPLE mode and reverse

Hi everyone! I have a stack with my work today. My stack here: I have a select html element and it has MULTIPLE mode: <select class="test" MULTIPLE></select> (MULTIPLE mode also type as : multiple="multiple" i inclue here) <select class="test" multiple='multiple'></select> now i only want select this element in many normal select ...

Jquery href with hash

Hi, i am using tis code for tab navigation. function hashIt(toHash) { toHash == "" ? window.location.hash = window.location.hash.replace( /#.*/, "") : window.location.hash = toHash; return false; } and also i am using jquery popup on page onload. a hyperlink in the popup is not working, if i remove the hashIt funct...

How to create hierarchy by using HTML

Hello, I want to know is this possible to create hierarchy in web pages by using HTML tags? IF yes, then which HTML tag should I use? ...

can we give <div> within <li>

can we give div tag within un order list tag.............. it will be in this format <li><div>blablabla</div></li> Is it Possible ...