0
votes
4answers
18 views
Should one use PHP to print all of a page’s HTML?
Hi
So I've always developed PHP pages like this: <?php goes at the top, ?> goes at the bottom, and all the HTML gets either print()ed or echo()ed out. Is that slower than ha …
0
votes
3answers
25 views
CSS Cover link text with Image
<th>
My Heading
<a href="#" class="sort-asc" title="sort">Sort Asc</a>
</th>
I want to apply CSS to .sort-asc to replac …
0
votes
4answers
33 views
Simple CSS Centering Problem only on IE7, Chrome and FF Fine
I'm having a problem with a centered div only on IE7... on Chrome and Firefox it works properly.
Here is the website, it's on Volusion.com so go easy on me it's an old platform :) …
0
votes
5answers
26 views
Ie 6, 7 and 8(Compatibility mode) issues
We have a site that works fine with any latest browser including ie8.
But it has lots of issues with ie6, ie7 and ie8(Compatibility mode).
We are using following doctype
<!D …
2
votes
11answers
163 views
How do you make a good web site design
What resources do you use to make a good and beautiful web site design?
Do you use templates?
What patterns you use?
Are there any web site with good resources and ideas?
0
votes
2answers
24 views
API for word definitions…
hi all, i'm trying to implement a little app which basically only hs a label, textbox and a button and when the user enters a word, i want to connect to some online api to retrieve …
0
votes
4answers
65 views
Use of double quotes in a ‘input type=”text”’ value wont work, string stops at double-quote !
How can I make it possible for users to use the '"' (double quote) inside a textfield...
Whenever I do use double-quote in the field (the value) then when receiving the variable i …
0
votes
0answers
21 views
Why should I keep the cellspacing attribute in the markup?
I was looking for some resources about the use of CSS instead of tables and reached this presentation by Douglas Bowman that seems to be a 'classic'. I dug into it and found this s …
0
votes
1answer
22 views
jQuery each function html list, just return object
Hello
I have a bit of problem with my function who just should return html code
function contentStringHtml(data, name) {
return '<div id="gm-event-title">' +
…
0
votes
5answers
60 views
Simple HTML DOM help
How can I extract the value attribute of an input tag? Using SIMPLE HTML DOM
let me give you an example:
<form action="#" method="post" name="test_form" id="test_form">
Name …
-5
votes
4answers
79 views
How can I extract content from an HTML file using Java or Perl?
Possible duplicate of:
http://stackoverflow.com/questions/773340/can-you-provide-an-example-of-parsing-html-with-your-favorite-parser
http://stackoverflow.com/questions/238036/ja …
0
votes
6answers
43 views
Set values of LI tag in HTML
I have a Ordered list that I need to set the # values for. Something like:
<ol>
<li ShowValue=34>apple</li>
<li ShowValue=45>pear</li>
<li Show …
2
votes
7answers
74 views
How to remove diacritics from text?
I am making a swedish website, and swedish letters are å, ä, and ö.
I need to make a string entered by a user to become url-safe with PHP.
Basically, need to convert all characte …
1
vote
4answers
55 views
Getting an excerpt from HTML in PHP
I need to get a short excerpt of news items written in HTML to show on my front page. Obviously I can't use something as simple as substr because it might leave tags unclosed or ev …
0
votes
2answers
12 views
Asp.net server side Conditional attribute or unchecked attribute?
I have the following aspx code:
<% foreach (ModelDefect modelDefect in GetCodes())
{%>
<tr>
<td><input disabled="disabled" name="<%= modelDefect.Co …
