html

html positioned over flash: how to get cursor to respect CSS rules in OS X browsers

I have a webpage with a flash movie (via SWFObject) and I am using a modal jQuery UI dialog to pop up a google map on top of the webpage in response to user input. When viewing the site in Safari or FireFox on OS X, if I have the mouse over the part of the dialog content that is overlapping the flash movie underneath, the cursor change...

Is it possible to access a web page’s unparsed CSS text?

I want to parse the CSS files that are loaded with an HTML page but I don’t want to make AJAX calls to reload the CSS files that have already been loaded. Is there any way to access the pages unparsed CSS text? For example, it would allow one to access -moz-* declarations in Safari. ...

Disable HTML Warnings in Eclipse with Eclipise for Java EE developers edition

I am working on a Web App with Eclipse for Java EE. I have JSP files that are built with HTML files as includes. My index.jsp looks like this: <jsp:include page="include/top.html" /> <title>Title!</title> <jsp:include page="include/header.html" /> <jsp:include page="include/menu.html" /> <div class="span-15 prepend-1 last"> ...

Need help converting this inline javascript to a jQuery function

I have the following HTML/JS that shows an initial value, removes it when you click in the input field, and then re-populates it with the original value if you don't enter anything. I need to do this on multiple input fields on the same page and thus would like to turn it into a jQuery function that I could then apply to any input fiel...

How to make something similar to Time-Machine in a web page

Hi, I want to implement something similar to MAC OS X Time Machine in terms of having time-line on the page side and then clicking on a specific day will pull a page from the server. I have good experience with Ruby on Rails. I'm less experienced with GUI design and was wondering what in your opinion is the optimum way to do something ...

Compojure HTML Formatting

I'm relatively new to Clojure and a complete HTML/Compojure virgin. I'm trying to use Compojure to create static pages of HTML using a function similar to this: (defn fake-write-html [dir args] (let [file (str dir *file-separator* *index-file*) my-html (html (doctype :html4) [:html ...

Adding Combo-box dynamically

Howdy folks.. I'm trying to design a table in HTML which can add a row when I click "add row" button & the same for deleting an added row if i intend to delete it. I have written a javascript for adding checkbox and text. But I want even combo-boxes in it and I m stuck in the middle. Could you guys just figure it out and let me know ho...

HTML vs SHTML vs PHTML

What is the difference between: HTML SHTML PHTML Why and when i'll use which one? ...

this.select() and javascript events on forms

I have a form box that I want to be always selected. I was able to get it to select everything in the box when it is clicked (using onFocus="this.select()") but I want it to be selected 100% of the time. The text in the box will be always changing, so I tried using onChange="this.select()" but that didn't work. Here's what I have: <...

swf is cutting when i press ctrl+scroll embeded with html

Hi all I have embedded a swf file in html and the same is rendered in browser.When user tries to re-size, ie, using ctrl+scroll, the html content is resizing automatically, but the Flex component gets chopped off. Can we fix this? Basically, ctrl+scroll is a browser property, when user does that the flex contained in that browser also sh...

orkut application

orkut applicaion , i am applicaion succefully i deployed also my app name ishqiya, i am create first page invite friend but is not crated my second page and how i write back to home button if i link one page to another page how to write back button ...

Saving complete Webpage into local disk using IHTMLDocument ATL interface.

Hello Experts, In our win32 ATL project requirement we need to save the browsed web page into local disk in order to view it offline. Using IHTMLDocument2 interface we have retrieved html content using get_all() method and retrieved images from the get_images() method. now how do we extract other external files such as stylesheet (.c...

Open page with Form pre-filled

I have an entry Form. When the page is loaded, it must check: if ($_SESSION[WorkMode] == 'UPDATE') Then fill the Form with values from the database, else open a blank Form. If I fetch the results in a different PHP file and call this .php file on load, how to fill the Form. ...

How do I indent an unordered list properly? margin-left won't work!

Hi I'm creating an email but I'm not sure how to adjust the automated indent on the bullets. I'm sure theres a simple fix. Margin-left doesn't seem to work! Thanks for your help Regards Judi .bullets{ width:255px; color:white; font-size:11px; margin-right: 2em; list-style: none; li...

is there anyway to remove the Search bar and footer in the jquery datatable plugin

i am using this but i want to remove the search bar and footer (showning) how many rows there are visible. I basically just want to use this plugin for sorting. http://www.datatables.net/examples/ ...

alternative backcolor broken after sorting using jquery datatable plugin

i am using the jquery datatable plugin. i have the following code that sets up alternative backcolor on an html table. $('#dependenciesTabletr:odd td').addClass('odd'); $('#dependenciesTabletr:even td').addClass('even'); $('#dependenciesTable').dataTable({ "bPaginate": false, "aaSorting": [[2, "desc"]], "bJQueryUI": false, ...

Embed HTML form in email

Hi, Can I send an email that contains an HTML form with one combobox, that upon changing the value a reply would be send back? From the research I've made it seems that it is not possible... http://en.wikipedia.org/wiki/HTML%5Fe-mail Is that true? Thanks, Eden ...

Visual C++ 2008 Express Edition Wizard work's not correctly

Hi, I have Windows Vista, Visual C++ 2008 Express Edition. I'm trying to create a dll. So, I take next steps: File - Create - Project - Win32 - Win32 Console Application (it have to be a wizard). And I was expecting for this window: http://img244.imageshack.us/i/vs3ae4.jpg/ But I've got next situation: http://img30.imageshack.us/i/msvs1....

how to strech select ?

Hi all, I have a problem with my select .. Default value is "please choose" .. but there are some options like "Acommodation & Hotels" .. so its bigger than the default value .. so its not clearly seen on IEs, it works ok in FF, how can I do this? with css or javascript? what is the best solution ? thank you NOTE : I want to strech the ...

How do I get a value of a <span> using jQuery?

This is basic. How do I get the value 'This is my name' of the above span? <div id='item1'> <span>This is my name</span> </div> ...