There is a way to create a right-to-left text-direction select tag in HTML?
The following works in IE, but in Firefox only align the text and in Chrome nothing...
<select dir="rtl">
<select style="direction: rtl;">
...
In my program I have a string which contains URLs separated by /n (One per line)
Let's say the string is called "links". I want to take this string and generate a HTML file that will automatically open in my default browser which will make each URL a hyperlink (one per line). How would I make such a report not using any third party comp...
I'm writing Multimarkdown tables following the guidelines under the Table section in the syntax guide, and I wish to convert them to HTML using Text::MultiMarkdown .
It works great, The only problem is I can't figure out how to control the formatting of the tables (show borders, align headers, font size etc).
...
I just asked a question here, about why an iframe_resize function wasn't working.
After troubleshooting, I found out that the problem is not the function, so I am posting a new question.
I have an index.html with this resize function:
function resize_iframe(new_height){
document.getElementById('iframe001').style.height=parseInt(ne...
I am trying to create a program in C# in Visual Studio which would acquire html source of a current opened (or selected, or all) tab(s) in Internet Explorer 8/ (prefered) 9. I am tired of copying by - browser-> View Source, alt+a, alt+c, program -> alt+v
Anyone got an idea how to solve it?
...
What's the difference between container and wrapper? And what is meant by each?
...
I can do something like this:
$(document).ready(function(){
$(".schedule_link").colorbox({width:"95%", innerHeight:344, iframe:true});
});
to attach the colorbox to a link ...
<a class='schedule_link' href="index.html">Schedules</a>
... but what is the syntax to attach it to an imagemap like this?
<map name="mymap">
<area s...
So, I want to use a jQuery function to collect a URL from a link's REL, and pass it to a element.
Collecting the REL and sending it to the is no problem... but what's required to trigger the element's load and play functions, from jQuery?
Here's what I have so far:
$(function(){
$('a.componentLink').click(function() {
...
I am creating more than 1 <a href="#"></a> elements dynamically. The id attribute is also dynamically assigned. Like <a href="#" id='delete"+id+"'></a>. ID will becomes like delete01, delete02, ... I want to call a function when clicking any one of these element. I just know,
$("#someId").click(this.someFunction());
calls the functio...
Hey all,
I have a mov file that's 157 megabytes. I try running it on my page within a javascript scroller animation and the animation is very choppy and in fact I used css to simulate a mask but the thing doesn't get masked, probably do to the sluggishness of whole page, the page never fully loads, and the movie file makes it nearly imp...
I just realized that:
<div class="clear"/>
after a series of floating divs causes layout havoc, while
<div class="clear"></div>
works fine.
Can anyone explain this?
This is the CSS:
div.clear {
clear:both;
}
...
In some versions of IE, there is a thin 2px border surrounding the document view port. I haven't noticed it for any other browsers yet. This poses a slight problem in calculating mouse positions for the page and client areas. Originally, I simply subtracted 2 from each of the calculations to account for the border.
But then, when I test...
Hello people,
I have several classes (for a Form generator class thing I'm making...I know sad.. :( ),anyway, the hierarchy is as follows:
class HTML_Form accepts abstract class FormElement objects (using type hinting). FormElement class has several children classes such as Textbox, Password, Radio .etc
How would I add validation ...
Hey, so I have some html ok, and inside it there's a couple of images. What I want to do is retrieve the location of the first image from the html. (get the first images url)
How can I do this in PHP?
Thanks
...
I'm writing Multimarkdown from Perl to create an HTML table.
I wonder if there's a simple way to make the table dynamic , that is, allow the viewer sort it by clicking on a column header, or even filter records by entering a simple rule.
I do not really know HTML. I'm coding in Perl and only generate HTML (actually, Multimarkdown conve...
Hi,
I was wondering, is there any (hidden) standard for navigation within a web page?
What I mean is, we all know that many, many pages have a search box (powered by Google, Bing or custom) for searching within the site. Is there a keyboard shortcut standard for accessing directly to the search box? In addition, usually when results are...
Does @font-face work in all browsers ?
How can i use @font-face (I want example).
...
I have a <textarea> that I want to print the contents on the page below it. When it does this I want to make random words be omitted.
I have accomplished this. My problem is I want make it recognize when the enter button has been pushed in the <textarea> and display that below. I want those to not ever be omitted. I have gotten it so th...
I have a database to keep track of the services clients have. But need to be able to find all the services (on different rows) and display them in an HTML table.
i.e.
Service Company Status
-------------------------------------
Service 1 Company 1 Complete
Service 2 Company 2 Pending
Service 3 Company 1 ...
I have a <textarea> that I want to grow by one row every time the user enters into the last row shown in the <textarea>. Is this possible?
I have seen it done before, but can't figure out how to do it.
...