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.
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 ...
0
votes
1answer
127 views
JSF: <f:selectItems value=“#{Bean.method([abc])}” />
I have a bean and there is cache and a method to get value from it.
public List<SelectItem> getSelectItemList(String key){
return cache.get(key).getValue();
}
May I know how can I get this ...
0
votes
1answer
42 views
Stuck with movement of footer when content size increases
I am stuck with a problem for quite a while now.I have googled and have tried almost all the responses and none of them has worked..
I have a PHP page which has following layout
<div ...
0
votes
1answer
161 views
infinite scroll not working
I am using infinite scroll plugin for my page, but after writing the code it doesn't seem to work.I scroll to the bottom of the page but the infinite scroll doesn't get fired.
I have included all the ...
1
vote
1answer
95 views
Alternative for oncontextmenu - javascript
I'm looking for a JavaScript alternative to onContextMenu in an xHTML page. I want to hide the menu which pops-up (The context menu) When I click the right mouse button on a website.
I have a problem ...
1
vote
1answer
42 views
Is HEREDOC still used? [closed]
I am reading an old "for Dummies" book and came across a section about heredocs output.
Is this still (or was it ever) common coding practice?
print <<<HERE
<table>
<tr>
...
0
votes
1answer
259 views
Primefaces Pick List Data not transfer from source to target
I used a pickList in in java web application. But when I test it values are not moving to target list. I did this seperately aand it works perfectly. Then I copied the code and paste it in my original ...
0
votes
0answers
196 views
What is the real difference between strict and transitional doctype
I have read many forums which explains the difference between strict and transitional doctypes but none of them explain whether selecting strict or transitional matters when it comes to rendering a ...
0
votes
0answers
101 views
Javascript lazy scrolling issue
Whenever I am adding the following code for lazy scrolling to my index.xhtml I am getting an exception
<script type="text/javascript">
$(document).ready(function(){
function ...
0
votes
0answers
274 views
Primefaces Dataexport prints <br> tags while exporting to PDF or Excel or CSV
3,
while exporting my data to pdf,excel and csv the "br" tag is coming with data where I separated the data with "br" tag, here is my xhtml code
...
0
votes
2answers
89 views
Converting my single page site to html5
At the moment I have a single page site (html/php) I created for someone about 2 years ago. I'm about to add an admin panel and plan on starting with html5 for it. I'm curious what I will need to do ...
0
votes
1answer
61 views
Footer floating over main content
So I have a site that scales down gracefully in the browser window but I am having an issue with the content outside of my header. The main and footer elements are just hovering in the middle of all ...
2
votes
0answers
222 views
Element Incorrectly Positioned on Page Until Window Resized
I have a webpage containing several Divs which contain individual 'pages'. I have defined the following CSS styles:
@charset "utf-8";
/* CSS Document */
.hideDiv{
display:none;
}
.showDiv{
...
0
votes
0answers
137 views
Validate a list in validator phase in JSF?
In my jsf project I have an inputText for which I have set required="true" and a selectOneMenu from where I select any value and add it to datagrid. I want to do validation of datagrid which if not ...
1
vote
2answers
91 views
AJAX issues when trying to print out MySQL Query
I'm currently learning AJAX and I've run into this error in which results from MySQL query is not being displayed.
The following snippet is of the javascript :
<script type="text/javascript">
...
0
votes
0answers
90 views
HTML Image button complete each other
Am using MVC4
I want to have map in my page where each region is Image button.
I already have each region as image my question is:
How I place the image of region so that are all region complete each ...
0
votes
3answers
70 views
JavaScript Form Validation
I'm trying to create a form submission and before the form is submitted, I want to verify the credentials.
I have both this so far
HTML formatted for XHTML
<?xml version="1.0" ...
0
votes
0answers
40 views
JSF onlad method - bean method and Javascript function?
simple questions: Can I use a bean method AND a js function together in one onload statement of my .xhtml page?
Like this:
ui:param name="onload" value="#{exampleBean.beanMethod}jsFunction();"
...
1
vote
1answer
80 views
Insert " around HTML attributes with JavaScript
I'd like to insert " around attributes that don't have so, by using JavaScript.
For instance:
<a class=external title=Title href="http://www.google.com" rel=external>My link</a>
Should ...
0
votes
2answers
73 views
Applying text to a image (without pushing it)
I've been trying to get this worked out but I am completely lost as of now, I've tried many things related to resizing my image at the top of the page and concluded that I could set the background as ...
0
votes
2answers
49 views
[php]output results of calcualtor on client side only
Client code name something like calc.php
<html>
<head>
</head>
</body>
<form action="TESTC.php" method="POST">
<input type="text" name="num1">
<select ...
1
vote
2answers
178 views
JTidy java API toConvert HTML to XHTML
I am using JTidy to convert from HTML to XHTML but I found in my XHTML file this tag .
Can i prevent it ?
this is my code
//from html to xhtml
try
{
fis = new ...
1
vote
0answers
61 views
How do I display <Object> tag in webpage to input data other than Windows Explorer
I have recently learnt how to input data to my webpage from a txt file using tag and DATASRC. However when using the following code, it only works in Internet Explorer.
<OBJECT ID="league"
...
0
votes
1answer
181 views
JAVA: HTML to XHTML Converter
I am looking for an effective HTML to XHTML library in Java. I have tried HTML Tidy but it causes this error:
XML Parsing Error: mismatched tag. Expected: </meta>.
Do you recommend any better ...
0
votes
1answer
39 views
XHTML, Glassfish, Apache, and Internet Explorer
When I run Glassfish on localhost, and trying to load xhtml files on IE8, I get the pages loaded.
I uploaded xhtml files to an Apache Server, and successfully accessed them from Chrom, FF and IE9.
...
0
votes
1answer
43 views
xhtml compliance error handler event like html compliance onerror event to handle empty image
the following blocks of code hide the placeholder (imagecontent) of dynamically populated empty images and their captions:
<head>
<script type="text/javascript">
function ...
1
vote
2answers
127 views
Dividing colspan in html table
Actually I am new to designing. I have a html table which has three rows description is below
Row 1 -- 2 Columns
Row 2 -- 1 Column
Row 3 -- 3 Columns
Now I want to divide the third row columns in ...
1
vote
2answers
123 views
Can't get jQuery to work with Icefaces + Liferay
I'm trying to develop a simple Liferay portlet with the Icefaces framework and cannot get jQuery to work.
The main problem is, that I can't load the jQuery library properly. Whenever I add script ...
0
votes
2answers
61 views
Getting Illegalstate exception in executing xhtml
I am getting some exception in doing a jsf application. This is my xhtml code.
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
...
0
votes
1answer
78 views
Creating a “table” within p:picklist using itemLabel
I was wondering if it is possible to create more complex itemLabel for the primefaces picklist. Basically I am using the picklist as a way for users to move a contact (think Outlook contact) from one ...
2
votes
1answer
90 views
Inline SVG and jQuery selection
I have an inline SVG in an HTML file. This SVG has an animation inside with an id "move".
If I call this animation using jQuery 1.9.1 to modify its attributes, like so:
$("#move").attr("from", ...
-4
votes
1answer
76 views
Simple project gone wrong [closed]
This is what I have to do:
Many companies normally charge a shipping and handling charge for purchases. Create a
Web page that allows a user to enter a purchase price into a text box and includes a
...
0
votes
1answer
160 views
invoke primefaces context menu from java script
i have a svg on my webpage. The elements when right clicked on should display a context menu with data fetched from the database.
The elements are written in such a way that the right click event ...
-1
votes
2answers
21 views
Centering page content divs in centered webpages
Keeping in mind that this question has probably been asked in many forms. I just don't seem to be getting it. I want to center masthead, top nav, page content, and footer divs in a centered web ...
0
votes
0answers
60 views
How to enter to my function after validation fails in primefaces
I have two radio buttons and you are able to select just one and it works fine, but after the validation fails you can select the two radiobuttons.
I´m using primefaces 3.1 and glassfish, apache ...
0
votes
2answers
44 views
div can't be side by side
I have the following code: http://jsfiddle.net/kXesZ/. The 2 social media icons need to be on the bottom edge of the background image but I can't get them inline. I have tried several things ...
0
votes
2answers
113 views
Cannot reference a DOM element in the JSF template from child view
I'm using JSF templates and Primefaces. I don't seem to be able to reference a specific div in the main page from a sub view.
Template page template.xhtml:
<!DOCTYPE html>
<html lang="en"
...
3
votes
3answers
79 views
Why does this JavaScript prototype function break jQuery?
Question:
As soon as I add the below code to my html page, I get:
Line: 4
Error: Object doesn't support the property or method "exec".
This is the prototype that causes the bug:
...
0
votes
1answer
126 views
jQuery create element by template <element />
I can easily create new element with jQuery:
var $e = $("<element>");
The result after appending will be:
<element></element>
But I really need:
<element/>
How to ...
-5
votes
1answer
100 views
How do I make my form on my website work? [closed]
I have a website up and running that was put together by this site. All of the forms work on all the web page links at the bottom except for the Investors link. I modified the form only on that ...
0
votes
1answer
127 views
Creating a vertical HTML/CSS menu and I want to remove <li> top padding (displays in both FF and IE)
I'm creating a navigation menu using HTML and CSS for a library OPAC. There seems to be unwanted top padding in each li item which results in a persistent gap between items in the menu. This is ...
1
vote
1answer
165 views
Setting BarWidth In Primefaces 3.5 [BarChart]
I want to set width of bars in barchart of primefaces.I tried this extender but didn't work :
this.cfg.seriesDefaults = {
rendererOptions: {
barWidth:10
}
};
How can i handle this?
...
1
vote
1answer
111 views
iso-8859-2 encoding problems
I'm using the following code in my html:
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-2;" />
<meta http-equiv="Content-Language" Content="hu" />
My problem is ...
0
votes
1answer
52 views
Black bar on iPad after setting viewport
Site address: straightace.com
Used the following code:
<meta name="viewport" content="initial-scale=1,
user-scalable=yes,maximum-scale=0.6,width=device-width">
...
0
votes
0answers
39 views
master page link is displayed as text and commented part is displayed
after publishing the website iam getting this kind of error commented contents are displayed and master page links are displayed
<%@ Page Title="" Language="C#" ...
0
votes
0answers
18 views
I'm looking for a way to limit search within XTML files
I'm looking for a way to limit search within XHTML files to specific "pages" defined by using span and div tags with an epub:type attribute set to the value pagebreak (pagenum).
0
votes
1answer
27 views
are XML entites necessary in attribute values
For example is this OK
<meta name="description" content="Foo & Bar"/>
or should I use this instead:
<meta name="description" content="Foo & Bar"/>
The doctype of the page ...
0
votes
0answers
109 views
How to get the result List from managed bean to xhtml webpage?
I am trying to build an Online exam system.
Right now, I am trying to search for a particular question and displaying the results on searchResult.xhtml.
I have a session bean QuestionBankFacadeBean ...
0
votes
1answer
59 views
way to achieve syntax highlighting [closed]
I am in need to achieve syntax highlighter for a web page., but I have no experience(either Idea) on it. Please guide me to make some good work on it.
Most of my web page may include Java codings and ...
-1
votes
1answer
35 views
Body background takes a while to load landing on the side .. how could I fix it?
So the whole body background of my website has been manually inserted in my CSS code below , but occasionally , sometimes the background takes many seconds to load and I'll first see the DEFAULT while ...






