html

post value from one iframe to another iframe

hello, i have two iframes in my page and i would like to the value of an input field form one iframe to an input field of the other iframe ...

jquery advice or help converting flash to jQuery

Hi, I was task to convert a something like this flash file into jQuery... any help or advice? it should be html 4. I'm not new to jQuery so if you have links that I can use to help me build this would be appreciated.. thanks, Reigel edit: update/progress okay, as jAndy suggested, I found this for rotating images ...

Change POST values in webpages? Riddle help?

Hi, I'm kinda new here and I've got a programming/coding related question you guys maybe could help me with. I'm currently playing this game on the net www.darker-future.nl which is sort of a site you got to hack/use IT knowledge to go up levels. I'm kinda stuck at this level which i obviously lack the knowledge of coding for? Ive got...

How to style HTML <option> controls as checkboxes

How do I style HTML controls as they could display as checkboxes using CSS, I have searched through google but couldn't find any good help. <html> <select size="4" multiple="multiple"> <input type="checkbox" name="ckbx"> Data 01 <br> <input type="checkbox" name="ckbx"> Data 02 <br> <input type="checkbox" name="ckbx"> Data ...

Strange behavior of button: calling "onclick" parent's element instead of itself (HTML Button)

Hi all! I have following structure of web application, for which I'm automating testing: <em unselectable="on" class="x-btn-split"> <button type="button" class="x-btn-text " id="ext-gen523" title="Add Options">Add</button> </em> Both objects has event listeners,added viw JavaScript in some linked js-file (I don't know what f...

How to programmatically convert pdf to xps

How to programmatically convert pdf to xps? Need library, but no finished software product. ...

How does HTML deal with white space in the markup?

I am not talking about white space in the content, but the code itself. I had a bunch of validation errors in my HTML and discovered it was because I was missing a space in my markup - <td class="col_title"colspan="2"> Line 1, Column 80: attributes construct error Line 1, Column 80: Couldn't find end of Start Tag td line 1 Line 1, Col...

In this horizontal menu only for last dropdown i want to keep inside...

http://www.lwis.net/free-css-drop-down-menu/dropdown.simple.horizontal.html Right last item's dropdown goes outside the menu I need only last last item's submenu inside. like this ...

How do I let to browser to remember the input of the text area.

In case a user forgets to enter an input area or enters an invalid code, and then comes back to the page where the users was filling a form, then he/she will face that his/her textarea is empty. And won't want to fill it again. I want from the browser to remember what was written in it. How I'll do that? <textarea cols="60" name="event"...

Setting image dimensions in HTML

Is it good practice to set the dimensions of an image (in static content), even if I have cropped the image to the correct size and it's container has fixed dimensions and overflow:hidden ? <img src="" title ="" alt="" width="100" height="100"/> ...

How to send dinamically generated variables via ajax, using post method.

Ok, the title isn't so easy to understand, i think. First fact: I'm new to ajax. Now on with the show :) I've an html page wich contains a table, some rows and inside any row i checkbox. When i select a checkbox i will to delete the message BUT only when i click a red-button-of-death. Example table    tr(unique_id)       td [checkbox...

Convert html entities into charactes problem

Hello link Im having trouble converting the html entites into html characters, (&# 8217;) i have tried using al the different php functions (html_entity_decode, htmlspecial characters etc...) None seem to be working, any ideas what function i need to use? Thank you! ...

When define action for form

When one needs to define action parameter of form ? Across different projects I've seen forms with action defined as {% url app.view parameters %} or simply '/contact/' but also with action = "." . When do we need to provide each type of action ? ...

How to convert block of html to an image (e.g. jpg) in asp.net

Hi I like to convert html for example a table to and image and save as jpg. (what I mean is that a table displayed on web page, I only want to get that specific table and save as image) Is it possible using asp.net? thanks ...

Unicode to a Form with Javascript

Why when I set a form with the numeric character reference of an unicode with javascript the character is not converted to its correct representation, but when I set the form directly from the html it works? <html> <head> <script language="javascript"> function test() { document.InputForm.TextBox.value = ...

HTML: can I protect some pages from Google using user authentication ?

hi, A section of my website is accessible only for authenticated users. I was wondering if this pages are crawled by google, or they are kinda "hidden" to the search engine. thanks ...

Bloc borders with 4 images

Hi, i need to do something with some CSS but i really don't know how. I need to have a bloc with images as border, but i need to have 4 images (top left bottom and right). The problem is the left and right div's height must be equal to the center div. If someone have a solution for this problem. Thank you. Cyril ...

CSS nth child selector

I have a problem with css selectors, I have 2 buttons rendered into HTML by a external javascript, and the buttons are at the bottom and at the top of my page. So if I customize CSS with mutual class name one button looks fine but the other does not, so here is my idea: select the first button of a xclassname and give it some CSS do n...

problem in toggle function of jquery

hey i have a section in my website that needs to be toggled by clicking on the title . now i wrote this code to toggle when clicking on title $(document).ready(function(){ $(".toggle_container").hide(); $("h4.trigger").click(function(){ $(this).toggleClass("active").next().slideToggle("slow"); }); }); html part : <h4 class="tri...

How to use HTML in grails messages.properties for mail sending

In grails, I use a GSP template to render an HTML email sent out with the mail plug-in. This works fine, however the GSP template uses a param which is in turn retrieved from my messages.properties file. Now I want to use HTML, e.g. <br/> inside the messages.properties, but it in the mail it appears as text and the tag is not interpreted...