HTML (Hyper Text Markup Language) is the standard content markup language of the web. It is an open standard developed and maintained by W3C (World Wide Web Consortium).
1
vote
1answer
19 views
Is there a method to add multiple properties to HtmlTextWriterStyle?
I am creating new elements for a webpage at run-time and I have code like this:
var dynDiv = new System.Web.UI.HtmlControls.HtmlGenericControl("Div") {ID = "dynDiv"};
...
0
votes
0answers
12 views
Containing the navigation bar in the Foundation 4 framework with CSS?
I am looking for the cleanest way in the CSS to contain the navigation bar to the center of the site I am working on. As you can see from the picture below, the content in the header is pushed to the ...
1
vote
0answers
32 views
Optimize HTML Document Function
bool sucess = false;
var htmlDocument = new HtmlDocument();
while (!sucess)
{
try
{
var httpWebRequest = (HttpWebRequest) WebRequest.Create(aUrl);
...
2
votes
1answer
94 views
I need someone to check this out to improve it
Takes a name, 2 images and a birthday for an artist, uploads images and insert info into MySQL, I seem to be missing something and I'm looking to see if i'm following best practice.
<?php
...
2
votes
1answer
47 views
Least amount of HTML and CSS to create a bottom border for every section?
I am doing a redesign and have some previously existing content in HTML that is similar to
<p class="testimonial-text">Bacon ipsum dolor sit amet aliquip est tail occaecat bacon ad qui short ...
2
votes
1answer
28 views
Condensing Navigation jQuery
I have some jquery that pretty much just runs a small drop-line navigation. Each tab size differs, so i used the same jquery line 5 times to make it look and function the way i wanted it to. I'm sure ...
1
vote
2answers
52 views
HTML containers and positioning - Code Review
I just started to make a static website after years of not playing in that field (stopped in the early 2000s), just to try to remember what I lost over time. Before going any further, I wanted to know ...
2
votes
1answer
48 views
Have I missed some obvious XSS vulnerabilities?
As the question states: have I missed some obvious security vulnerabilities in this code? Particularly interested in XSS...
I'm trying to create something more robust that strip_tags, but simpler ...
1
vote
1answer
57 views
How can I make jquery animations faster for mobile devices?
I recently made this campus timeline for my university. You can see it here
My question is this: When viewing the timeline on a mobile device (not a tablet), the navbar changes so that you can jump ...
1
vote
2answers
65 views
JavaScript - Does this link need improvement?
I would like to hear your feedback on the link below that lets users add a link to a website. I read that javascript:void(0) is suggested instead of a # for the <a href="" attribute. Is this still ...
-3
votes
0answers
30 views
need help to create a invoice ordering system [closed]
I'm developping a invoice system and need some help. I'll paste my code below, the form is working at about 90% of what I needed. I need help mainly to clean up the code (it's mixing html, javascript ...
1
vote
2answers
79 views
Assist cleaning up messy HTML/PHP code
I really hate messy code, but I seem to be rolling in it. I just want to see if anyone has some helpful advice on how to tidy this up.
<table>
<tbody>
<tr>
<th>Zona</th>
...
3
votes
1answer
33 views
jQuery - Drop Down QA
Here's a fiddle: http://jsfiddle.net/YF8cg/
Focussing entirely on the javascript and on the structure of the HTML (.qapair .question and .answer), how could I improve this system?
JS:
...
0
votes
2answers
77 views
Looking for a code review(non-profit website) [closed]
I'm very new to web dev I volunteered to work on a non profit website
So here is where I'm + I would like to know what mistake I did
& how to centre the website in the browser and make it ...
4
votes
1answer
58 views
Create a table from MySQL using PHP PDO
I am trying to simply present a table in HTML that is stored in a MySQL database. I would like to use Object Oriented PHP to access and fetch the data for the table. I have spent some time learning ...