html

How to retrieve the Selected checkbox names ( Multiple Selected) in PHP?

I had multiple checkbox which is generated using loop. After submitting the form I want to get the names of the selected individual checkbox to store it in database as id. Please help me.. Thanks in advance Code i used for generating checkbox in loop: while($arrayRow = mysql_fetch_assoc($rsrcResult)) { $strA = $arrayRow["area_...

Javascript can't change text in textarea once CKeditor instance as been called on it.

Hi guys. Well i first wrote a Javascrip function that would change the text in a textarea according to the selection you made in a dropdown box, a really simple thing. HTML <form name="formconteudo"> <select name="selectpage" onChange="change();"> <option value="1">something</option> <option value="2">another thing</option> <option va...

Can't set parent hidden input from iframe!

I have an iframe on my main page, and this iframe uses php code mostly (src is php file). At the bottom of this iframe I have this: window.parent.document.getElementById("qry_str").value='hey'; And in the main (parent) file, I have this hidden input which I am trying to set from the iframe with js: <input type="hidden" i...

"Back to search results" problem

I have a form with many inputs, but not all inputs must be filled in. Form action is set to a php file, which checks which inputs are set and builds a query to query MySQL. Then I display the results on the main page, and the users may click on an ad to show. When clicked an ad, a new page opens with several options for the user (chang...

Website that recognizes user's location/IP & changes lang. based on that

Hello, title is pretty clear. My websites consists of both English-written and Spanish-written versions. You can go to the main site, which is in Spanish, by clicking http://www.chrishonn.com and to the translated version, which is in English, at http://en.chrishonn.com. At the index of each page there is a link (at the bottom) which al...

Get all attributes

Hi, is there a way to get the list of attributes set to an element? example: <div id="myID" title="I am Title" myAttr="I am something else">Hello World!!!</div> is there a way to get all the above attributes? I tried this already but nothing so far: $('#myID'.attr(); I tried this aswell: $('#myID'.attr().each(function(a,b){ a...

Webpage loading in internet explorer problem?

Using CSS Style Sheet, HTML, XML When i run my website, my page was properly displaying in the firefox, but the page was not properly displaying in the internet explorer. Most of the people using only the internet explorer, but why my web page is not properly loading in the internet explorer. I have to change the setting of internet e...

PHP: Loading up an HTML file without it tidying my code

I am using the loadhtml function (http://php.net/manual/en/domdocument.loadhtml.phpt) to load up an external .html file. When I load it, it "tidy's" up my code, which, I don't want. I do NOT want a full HTML document, I only want html snippets in my .html, and I don't want the loadhtml file to try to make it valid html, because I don't...

iframe allow vertical scrollbar but not horizontal

I have an HTML iframe. I want it to be scrollable vertically, but not horizontally. Is this possible? ...

How to align the top lines of two <div></div>?

I want the top lines of two <div></div> to be aligned horizontally, how to do it? ...

Why are there so many underlines in this HTML file? The layout is out of shape too, how to correct it?

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; <html xmlns="http://www.w3.org/1999/xhtml"&gt; <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Uターンラッシュがピーク 新幹線や空の便、ほぼ満席 -Tenxian</title> <script src="http://ajax.googleapis.com/...

Fixed 3 Column Site

I know this has been asked before but im curious to see if things have changed. I'm looking for a html/css fixed 3 column layout with the main content (middle) area located first (of the 3 columns) in the DOM - for SEO. Any ideas? ...

Should we use strict doctype if our code is valid with Transtional doctype?

What are cons to use transitional doctype with presentational or deprecated element, if our code is valid in W3C validation with transitional doctype? Will we have to rewrite/edit site's code again after few years for the site's in which we are using XHTML/HTML transtional doctype.? This is not semantic but using less character, and it...

Disable drag/drop in QtWebkit

Hi I am trying to create an HTML GUI for an application using Qt's WebKit... so far everything is going smooth with a minor problem, I don't want people to be able to drag and drop images from my GUI. I have disabled text selection using a small java script. But I'm not sure how to disable image dragging.... I have used onmousedown="ret...

Displaying a list of texts sequentially with fade in and fade out effect.

I would love to display the following list of text in sequential order, with fadein/out effect and eventually display the image and stops at there. I also would love to display all these texts in center. <div>a<div> <div>b</div> <div>c</div> <div>d</div> <div><img src="mypict.jpg" alt="my pict" /></div> This are all I have for the pa...

Correcting 100% Width Problem with Anchors

Ok, so I have a class that modifies the looks for a specific type of anchor that I'm using, but the problem is that the browsers keep adding the 30 pixels of padding that I have set onto the defined 100% width, so it's stretching out past the box which the anchor is located in. div.box div div div a.option_line { cursor: pointer; displa...

JAVASCRIPT: IE: outerHTML

Problem i encounter with outerHTML using IE Browser if i say: txt="Update Complete!"; msg = sub.appendChild(d.createElement("p")); msg.outerHTML = txt; It Works Fine: But if i say txt="1 Error:<ul><li>Some Error</li></ul>"; msg = sub.appendChild(d.createElement("p")); msg.outerHTML = txt; Gives me an error of: Message: Unknown r...

How to style an Horizontal Splitter panel in GWT 1.5

I have this requirement to style a right side of a horizontal splitter panel. From what i know, GWT 1.7 has support for the individual panel (left and right) styles, But we are using GWT 1.5 here. gwt code: HTML div1 = new HTML("Div 1"); div1.setWidth("200px"); div1.setHeight("200px"); HTML div2 = new HTML("Div 2"); div2.setWidth("400p...

XSLT: remove white spaces when transforming to HTML

Hello I have a XML doc that is transformed to HTML but I want the result HTML to be as small as possible. So I must remove all white spaces and line endings. How can I do that? 10x ...

How do I add an image to this text?

<?php if (mysqli_num_rows($new_result) == 1) { if ($row['borrowingPower'] == 'mayor') print "<div id='verified'>This User is Verified!<div>"; } ?> In addition to the text "This User is Verified", how can I make an image display just to the right or just above the text? ADDED TEST FILE FO...