XHTML, eXtensible HyperText Markup Language, is an application of HTML that is also a valid XML document, as opposed to standard HTML which is based on SGML. It is a markup language commonly used for webpages.

learn more… | top users | synonyms

0
votes
2answers
73 views

Making part of an image clickable

I have a background image applied this way HTML <div id="background"> <img src="stock.png" class="stretch" alt="image" /> </div> CSS #background { width: 100%; ...
2
votes
2answers
55 views

extract string from inside an attribute

I need to write a function like this: var width=getWidth( $(this).attr("ows_MetaInfo")); where $this is pointing to the xml row . in the getWidth(meta){} funtion i need to find the text ...
0
votes
1answer
58 views

Facebook like button - like content

I got my facebook like button generated, and prepared it so user is able to like each post on my forum. The href attribute is set to the thread and certain post url, but when I click the like button, ...
0
votes
3answers
160 views

How to Disable whole Div Contents without using JQuery

As I have Basic knowledge of JavaScript I want to do operation like following : By using Two radio button giving two option for Payment : By Cash By Check If user select the radio button of Cash ...
-1
votes
1answer
184 views

Why does my website look different on my iPhones Safari browser, am I doing something wrong?

I have finished designing a website in HTML, and reviewed the results on a Windows Computer for Google Chrome, Safari, IE 9, Firefox and Opera web browsers. When reviewing my website on an Android ...
0
votes
2answers
88 views

css transition only working in Firefox

I'm trying to use CSS transitions to make a background image fade in on my menu when you hover over it. I want it to take about 2 seconds to fade it. It works perfectly in Firefox but all on other ...
0
votes
1answer
62 views

Disabling Html control

I got an aspx page with HTML controls,Based on the button click function I want to change the visibility of controls.If user clicks on EDIT,I want to disable the controls otherwise (NEW) enable the ...
3
votes
2answers
63 views

word spacing not working in safari

Hi I was hoping if someone can help me with an issue I am having in Safari. Basically I have created a website If you look on the top menu at the navigation bar, there is word and letter spacing in ...
0
votes
1answer
31 views

Single line (one or two words) overflowing outide a div

I am brand new to CSS so please forgive me if this is a foolish problem. I have created a footer with 3 embedded div's of 33.33% of the width inside of it. For some reason the text that I am putting ...
1
vote
0answers
101 views

'alert' undefined in chrome

I am trying to make a field in a php form required. I am using Dreamweaver Cs3. Dreamweaver generated the following function <script type="text/javascript"> <!-- function ...
0
votes
0answers
11 views

Creating a function to produce XHTML markup

The objective in this is to create a function which produces and returns a string of XHTML markup for a set of three terms and their definitions. The first pair of braces {} is somehow causing an ...
1
vote
0answers
22 views

How can I embed a XML document inside a XHTML document?

For example, how can I embed <?xml version="1.0" encoding="utf-8"?> <root> <node><![CDATA[Text]]></node> </root> in my XHTML? I know I can put it in a CDATA ...
-1
votes
1answer
116 views

form in php and submit button?

I have the form and the php, the form asks the user what he would like to buy and the user selects and it adds it up, i want it so that when the submit button is clicked, the data that is stored in ...
-1
votes
1answer
60 views

changing fontstyle in a epubfile increase/decrease the pagecount in uiwebview

I am Developing an app epubReeader .I have used css to change the font style in UIWebView and font size is fixed for all font styles .But the problem is when I am changing the font style of the font ...
-1
votes
5answers
81 views

Send values from HTML Form to PHP

How do I link the PHP to the HTML form? I understand how to do the PHP and how to do the HTML, but how do I link the php to the html or is that automatic, how does the HTML form know about the PHP?
0
votes
2answers
145 views

a way to access php session data from an external javascript file using DOM

I have search for this and was unable to locate one that answers my question. I'm new to this so please bare with me. Thank You. Im creating a basic web application that simulates a micro blogging ...
1
vote
1answer
48 views

IE7 and display block on HTML strict

I'm having difficulties with an image taking extra space although it is set to display:block in css. This is only happening on IE7. The problem is solved when I remove all spaces between the tags in ...
0
votes
1answer
247 views

Fixed Header DIV pushed down without margin set

I want to use a fixed header, with the content behind it. The menu will contain anchor links, so all the content will be in one page. But, I got stuck at an early stage. I thought this would be no ...
1
vote
0answers
53 views

How to produce valid xhtml/xml output from Oracle ADF

I've tried to find a way to get our Oracle ADF pages to output valid code. I see a reference in Can we configure Oracle ADF Faces to produce valid XHTML? but it's dated back in 2008 or so. Is there ...
0
votes
2answers
92 views

Validation php code error W3C [closed]

I have problem with tr when I valdite in w3c it gives me //Display table of users echo "<table cellspacing='15'>"; echo "<th>Id </th>"; echo ...
2
votes
1answer
75 views

Why is an IFRAME inside a CDATA section breaking the parser?

I have a CDATA section that contains an embedded iframe declaration like below: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> ...
1
vote
1answer
57 views

mathML is not rendering at all

I have written this math equation using MathML. I have tried both using .html and .xhtml. None of them fulfilled my desire. In html format it shows x y x y and in .xhtml format it shows the code. So ...
0
votes
5answers
159 views

CSS - getting background color to fill drop down menu

New to CSS. I have a nav menu bar and I am trying to fill the background color (blue) in the drop down menu under "portfolio" when you hover over it. Any ideas? I think its because of that absolute? ...
0
votes
1answer
28 views

Error: Not allowed element when it is in JS

Just a quick validation question, I get: document type does not allow element "div" here And my code: $('#wrapper').prepend('<div id="slider"></div>'); It's just a JS stuff, how do ...
0
votes
0answers
90 views

Fixed layout EPUB3 read-aloud on iOS: should media-overlay.js be incuded in each XHTML?

Problem: Read-aloud book with fixed layout and 2 pages - readaloud works only for first page. Second page has no audio, though ambient soundtrack plays okay. Has anyone else faced the same problem? I ...
0
votes
1answer
58 views

Java: Jtidy convertion from html text to xhtml text

I am using JTidy i want to give it a string as an input instead of a file. Is that possible? How i can do that? This is my code: FileInputStream fis =null; String htmlFileName = ...
0
votes
1answer
95 views

Why does my slideshow have many excess blank pages on the epub reader?

I am Developing an android epub 2 reader my reader running smooth except on slideshow it always have excess 5 pages.My slideshow has 15 images with 270px height, My first conclusion was all the image ...
1
vote
3answers
422 views

Large CSS background-image blocks Javascript while loading

From everything I've been able to find a large CSS background-image shouldn't block javascript from executing. Unfortunately, on both Firefox and Chrome this does seem to be the case. If I do a hard ...
-3
votes
1answer
75 views

How to redirect from landing page to the home page?

I have made a landingpage.html and index.html, but how do I open a home page from the landing page. The issue I am suffering is, I make the code as and I have troubles how to use it. Is there any ...
0
votes
2answers
61 views

i am making an effort to make image slider but having troubles [closed]

I am making photo slider but it is giving me wrong values on clicking. i want to show the image 2 on clicking button next and image 1 on prev btn. But if i click more prev btn more than its index ...
0
votes
1answer
63 views

Need a scrolling bar in y-axis of my xhtml page

Any answers will be highly appreciated ......I have historyPopUp.xhtml page . I have to show more than 100 rows into it .This page is fetching its values from database. So its going out of its area. ...
0
votes
0answers
79 views

Adding of scroll bar in xhtml page

Any answers will be highly appreciated ......I have historyPopUp.xhtml page . I have to show more than 100 rows into it .This page is fetching its values from database. So its going out of its area. ...
0
votes
0answers
46 views

Video with JW-Player with fancybox2 - validate in XHTML strict

I am trying to use fancybox 2 in combination with jwplayer to play mp4 videos on my website. I have no problem getting JW-Player to work - the documentation is very good. However, in combination with ...
1
vote
1answer
137 views

How can I pass dynamic value for p:remoteCommand ajax call?

I have a p:dataTable which contains p:commandLink. I need to do ajax call with parameters on mouseover event. I found that commandLink cant make ajax call by mouseover event. We have to use ...
0
votes
0answers
28 views

Where should I put preRenderView listener event in JSF?

I am just curious to know where should I put this code in XHTML code? Under body tag or header tag or in between body tag and header tag? Does it make any difference? <f:metadata> ...
0
votes
1answer
217 views

Asp.net css stop div from expanding page height

So the problem is that I am trying to design a XHTML page in ASP.NET and the current approach that I take keeps expanding the page size when I simply want to fit the control within the div. I am ...
1
vote
2answers
142 views

Jquery: How to make the content showup below the navigation bar when the anchor link is clicked?

I have a fixed navigation on the top, when i click the anchor links to take me to a section in the page, i want it show in the visible space. How can I make the content show up below the ...
0
votes
0answers
45 views

p:fileUpload works on second load

I am working on a web project and I am having a trouble with p:fileUpload. The problem is; I need to upload photo to a blog page and when I click on choose option the browser opens and selects the ...
1
vote
1answer
70 views

Primefaces ManyCheckbox to array

I got the following problem. I got a datatable in a datatable Example: <p:dataTable var="mainarea"> ... <p:dataTable value="#{bean.subarea(mainarea)" ...
0
votes
1answer
404 views

how to refine/filter search result from mysql database using php?

i am trying to develop my website and need some support. so my web page searches for a product's information and return an appropriate result.It works perfectly fine when user search through a keyword ...
0
votes
2answers
189 views

How to get resource bundle value based on values received from managed bean?

I am looking for the possibility if I can get resourcbundle values based on values received from managed bean. It may be useful in datatable, datagrid, and also with other components where values are ...
1
vote
0answers
81 views

How do I keep the Facebook Like Box from creating XHTML errors?

I am using the most current Facebook Like Box on my website. When I go to validate my site's XHTML, I am seeing that there are several errors caused by labels that are not recognized. To be specific, ...
-2
votes
4answers
132 views

Should I use pixels, em or neither? [closed]

I'm trying to get the definitive answer on something in css. I'm trying to figure whether or not I should use line-height: 1.5; or line-height: 1.5em; or line-height: 15px; A few sites say ...
0
votes
1answer
50 views

self referencing form

The issue I seem to be having is with a self referencing form I have set up, at the moment there is the booking page, which executes a single PHP file which displays the self referencing sticky form. ...
1
vote
3answers
73 views

General entity“trk” is not defined and has no default entity error

I am trying to fix this validation problem: general entity"trk" not defined and no default entity and reference to entity "trk" for which no system identifier could be generated. Here is my ...
0
votes
1answer
48 views

how to translate array information into statement in php?

I am working on website that suppose to compare products. So I have reached to this following array Array ( [iPhone 4 8GB Black] => 319 [iPhone 4S] => 449 [iphone 5] => 529 ) the key of ...
0
votes
3answers
329 views

HTML multiple column select list

generally html list is created, <select size=6 name="sel" id="sel"> <option value="1">1</option> <option value="2">2</option> <option value="3">3</option> ...
1
vote
3answers
228 views

How should I compare two different product price in php script?

$comapre is an array with unique product ids passed on from previous page.so in the following page I want to look in the database using that productid, get information and compare the prices of the ...
0
votes
1answer
45 views

how to combine xhtml form with php codes? [closed]

this might be little confusing but i need to combine xhtml form with php codes. so here how it began: i created a search box and user searches for a product by typing a keyword or title and then my ...
1
vote
3answers
144 views

How do I vertically align a content div between a header and footer div?

I have three rows of primary divs in my template. I have a header, a content wrapper, and a footer. The header butts right up against the top and the footer against the bottom. I have a content ...

1 2 3 4 5 99