HTML is a markup language similar to XML that is predominantly used to create web pages. HTML standards, as well as those for many other web technologies, are maintained by the World Wide Web Consortium (W3C). The current iteration of the language, HTML 4, was introduced in 1997, and the next ...
-1
votes
1answer
37 views
Constructive feedback on my HTML and CSS coding skills [closed]
I was wondering if I could get some constructive feedback on my coding. I've got a year left of school, then I'll graduate with a Bachelors in Multimedia and Web Design. I'm also interning with a ...
2
votes
3answers
37 views
Building and getting a form of objects that have multiple properties
I'm building a form dynamically in a web app where I'm using product_id to keep track which product I'm reading and then product_<id>_property to grab the value of it. Then in my view I end up ...
4
votes
1answer
78 views
Is this violating the DRY principle?
I feel that I am repeating myself a lot with this HTML/PHP code. Am I right, and is there a maintainable way of reducing the amount of repetition in the code?
mydomain/index.php:
<!DOCTYPE ...
0
votes
6answers
96 views
jQuery doing what it's suppose to on all the pages except one!
Here is my script: http://jsfiddle.net/9cnGC/11/
I was wondering if anyone can help me with this fiddle and maybe clean it up a bit so it can run more efficiently?
I believe it is because there is ...
1
vote
3answers
66 views
HTML and CSS for a theme engine
I was wondering if there was any way I would be able to improve my HTML/CSS. Would you mind reviewing the following and telling me what I should do?
CSS:
<style type="text/css">
body {
...
1
vote
2answers
132 views
Please review my Code Review crawler!
I am writing a program which automatically crawls codes from Code Review site!
I'm quite new to java. Would you please review my code?
The required .jars: jsoup, org.apache.commons.io.
Main.java
...
0
votes
1answer
76 views
HTML downloader and parser - Would you review my code?
Good morning! (or afternoon, or even evening!)
This program downloads CodeReview HTML file and parses it.
Could you review my program?
There are 2 classes:
First - main.java
import java.net.URL;
...
6
votes
1answer
178 views
Webpage downloader
I wanted to download a webpage. I confirmed that this code works. But I'm not sure whether I'm doing it neatly. Would you review my (full) code?
import java.io.IOException;
import ...
1
vote
1answer
118 views
Custom dropdown menu using jQuery
I have written a custom drop down menu handler using jQuery because I felt that the native drop down didn't fit my UI.
I have taking into consideration the native way of going through a drop down box ...
1
vote
0answers
35 views
role attribute in html [migrated]
I keep seeing role attributes in some people's work. I use it too, but I'm not sure about its effect.
f.e.:
<header id="header" role="banner">
header stuff in here
</header>
or:
...
0
votes
2answers
44 views
Parsing unknown POST Args in PHP
I have an HTML form being populated by a table of customer requests. The user reviews each request, sets an operation, and submits. The operation gets set into a post arg as follow
$postArray = ...
5
votes
3answers
291 views
Code Readability vs Code Length
library.php
My own HTML tag encoder that will print HTML codes according to the input.
<?php
function tag($tagname, $content = NULL, array $properties = NULL)
{
$html = ...
0
votes
0answers
61 views
Simple PHP email sender script not working [closed]
I've been using this rather simple PHP email sender script on my WordPress theme for years and now it doesn't seem to be functional anymore: no emails are sent, no errors are printed out. I just ...
3
votes
2answers
105 views
How to add forms dynamically in javascript?
Example speaks for it self:
function writeSpecialTabContentForTtm(){
document.write('<div style="float:right;width:250px;min-height:200px;display:block;border-width: 1px 1px 1px">');
...
3
votes
2answers
161 views
HTML/CSS/jQuery - Code Review
I've been using CSS and HTML for a while and I'm trying to start to use better methods of coding.
I've tried my best not to hack anything, etc etc so I wondered if anyone could let me know how I'm ...