What is the use case for using your own html tags? (In standard off the shelf browsers)
A colleague and myself were discussing it lately. I could not think of a use case. We discussed it could be used for styling with css but then decided to use the span tag with a class instead.
Thanks
Paul
Hello,
I am trying to make a dropdown menu with pure html and css, but the submenus disappear when the cursor leaves the parent li, thus preventing me from clicking on the submenu. Here is a link to the test site, link text
I would really appreciate some help.
Roland A.
Looking for example code that uses semantic HTML that I can use to test stylesheets with. The version/doctype is unimportant though HTML5 would be great. By comprehensive I am looking for use of definition lists, forms, tables, plus all the usual.
Thanks
I'm developing a website that publishes scientific articles, not as PDF but as HTML. As a input tool for the editorial team, we use TinyMCE for normal text plus a couple of custom plugins for footnotes and citations. But we are not really happy with TinyMCEs table controls. Everything but the most simple tables take way to long to write. Are there any specialized table editing tools for the browser out there?
I'm looking for the best way to create a custom border around an HTML panel. I have a set of images for the sides, corners etc.
I need a good way to place them and stretch the sides dynamically to match the panel size.
If there is a jQuery plugin to do this I would prefer using it.
I have an issue in firefox and not in IE, didn't think I'd hear myself say that one, where if I have an commented section in my html like so:
<!--------------form--------------->
<div id='form'>
etc etc.
</div>
<!------------main content----------------->
The area in between the two comment tags is being completely struck out. What am I doing wrong?
Hi,
can you use xpath to access an html element?
It must run in interenet explorer, and i am writing it in javascript
I am trying to get the value of a specific input box in a specific row, but i don't want to have to iterate through all the cells to get the right one
Any help would be appreciated
Emma
It seems an html tag can't be inserted in the option tag. Say
<option><em>somewords<\em><\option>
Is there other ways to style the "someword", without styling the option tag?
Hi,
I am developing site with wordpress and i am newbie for wordpress. WP adds p tag in editor while adding any post or pages. But i can't see the p tag in HTML mode. Can anyone suggest me what might be the problem.
Thanks in advance
Hello guys,
I am currently using the below IDE's. They serve their purposes but am wondering if there are better ones out there that i can switch to.
phpDesigner v6.2.5 (For PHP)
Navicat 8.0.29 (For MySql)
Dreamweaver CS3 (For HTML & CSS)
Spket IDE (For JavaScript)
Thats my collection of production tools. Wondering if there is anyone of them i can switch to a better one.
Thanks
Hello,
For the HTML table column below, the $count++ displays in the middle of the row. How can I get it to display at the top of the row?
Thanks in advance,
John
Code:
echo '<td class="commentnamecount">'.$count++.'.</td>';
CSS:
.commentnamecount { width: 20px;
overflow:hidden !important;
color: #000000;
vertical-align:
}
Is there a lib i can use to diff between two pieces of code and display it in html? I am using diff - GNU diffutils version 2.7, C#, asp.net. I dont mind the code being in javascript.
I would like just the output with color text + css. I'll build the page around it. Does anyone know a suitable lib?
I have an html page which contains link to open pdf file. however this link opens in adobe reader when i click on it. I have set target property to blank. but it doesnt work either.
I want to open this pdf file in new tab in the same window.
Hi, Could you please give me some suggestions on how to parse HTML in Perl? BTW, Do I need download some website pages to local harddirver with some Offline Explorer Tool? If I need, Could you give me a download URL link to a good Offline Explorer Tool.
I plan to parse the keywords(including URL links) and save them to MySQL. Thanks a lot.
WinXP used
I have huge amounts of data populating an HTML <table> having more than 200 rows and 200 columns.
However, when i scroll the page horizontally or vertically to view the data, the header columns (like th for instance) go beyond the page.
How can i scroll through the table and still keep the top row and leftmost column fixed so that i will always know what data im seeing.
html file has two textbox and one button.
but i need to generate click event when i only click outside of the two textboxes and button
element.how can i do that.
RootPanel.get().addEventListener or something like that?? help.
I have a JLabel that needs to display some html-formatted text. However, I want to restrict this to being 4 lines long (and if so, provide a button to see everything).
So far, I've tried setting the maximum size manually or via a layout manager. However, both of these solutions can cause part of a line to be displayed.
How do I configure Ruby on Rails to output standard HTML code instead of XHTML when using helpers (form, javascript, css, etc.)?
I don't want to have the slash at the end:
<input name="email" type="text" />
I'd like to use some semantic HTML tags instead of <div>s: <article>, <product>, <footer> etc. Some of them are already presented in the upcoming HTML5, however, it's not fully supported.
Which are the possible cons I might face when Rendering? Using CSS, JS?
The one I remember is: IE6 can't clone tags it doesn't know.
Is there an event for situations where something is selected on an HTML page like arbitrary text within a span element? Does such a thing exist or does one need to poll at regular interval & analyze the window.getSelection() ?
I would like to trap this event type from within a browser extension (Chrome).
Hello,
I have some php code $_SESSION['username'] and I need to display it using html with something like <p>the username here</p>. I heard you might be able to do this using echo in PHP but Im not sure how. Thanks for any help.