So a normal popup but without the original borders and styles what comes from the Operating system.
Is there a way to style these popups?
EDIT:
Simply HTML elements are not good like <div> because they cannot be on front of the windows in the OS.
...
I am working with Joomla. I would like to display a certain module if the user has all browsers, except FireFox, and display another module if user has FireFox browser. I know that I can do targeted browser CSS styling, but in my case I need the user's browser to choose between an excerpt of HTML code (for all browsers choose this module...
Hello, I'm making some things with jQuery ajax function, and I have a problem when I put a form in the middle of the html.
In a nutshell: I have a dummy form that is controlled by the ajax, when it is submitted the ajax function complets the inputs below. The data submited by the ajax is contained in a form tag that is submitted when a b...
I'm trying to retrieve a select amount of elements that doesn't contain the value (a space) using the HtmlAgilityPack in C#. Here's my XPath expression:
"(td)[(position() >= 10 and position() <= last()) and not(.=' ')]"
but it is still giving me these nodes, I've tried using a literal space,   ALT + 1060 - nothing see...
I am getting a mixed content warning from Google Chrome. It does not show in Firefox or Explorer.
I'm opening the site from a test server on localhost running Vista, Apache2.2.16, mod_ssl2.2.16, OpenSSL0.9.8, and PHP5.3.3. All content is forced through https by apache. I am using a self-signed certificate.
The entire source code i...
I'm an assistant in a course where the students implement a web app (It's a Q&A site similar to stackoverflow) with the help of the Play! framework. This is a Java-based framework that relies on the MVC Pattern. The Model and Controller are written in Java where the view is written in HTML / CSS and some extensions that the framework pro...
IS there any tool that does the following, given a url?
strip everything (all text) from the page, except the markup (all the html elements)
add a border to all the div, span, table, tr, td etc in the page
keep the original size of the div, span etc (even though they are empty now, in terms of the data in them)
...
Implementing a "play video" function on a web site. Each video content item can have a different image. Each of these images will have the same width, but potentially differing heights (they are resized on upload to maintain aspect ratio to meet standard width requirements).
The plan was to display another transparent "play button" im...
Hi! I'm redesigning my Tumblr blog and I use CSS3 Pie to add some eye-candy to Internet Explorer. The problem with this is that CSS3 Pie uses Internet Explorer specific files (.htc) that can only be served from the same domain as the HTML file, which is something I can't do on Tumblr.
The thing is that without that file the website brea...
Hello!
My script is supposed not to let the HTML form be submitted unless a user enters some data into a textarea control. However, the form gets submitted anyway and no message for the user is displayed.
Could anyone see what I'm doing wrong?
Here is my HTML:
<textarea name="description" id="description" rows = "4" cols = "25">
<?...
Is it possible to make a <div> tag behave like a stock <br> tag with CSS?
Are there any other tags that cannot be mimicked by styling a <div>?
...
Hi guys, I have been trying to apply the remove function to my html page but with no result until now. I have three rows and they all have a remove button, I would like to create an effect that when you click on the remove button the whole row block disappears. Any help would be deeply appreciated.
HTML
<div class="row ...
I have a page 'foo.html' that populates a table via AJAX 'ajax.html?options=option1'(accesses a database.)
'foo.html' has a css linked to it that makes the table from ajax.html look nice. However, I'd like to have ajax.html also look nice with a css if it is directly accessed. if I add <link rel="stylesheet" type="text/css" href="/dev/...
In my application, I am running a shell script but till the script completes executing the screen is blank. I am not able to display anything on screen. I want to display the log file to the user so till the log file is generated, i want the user to see some text content on the screen.
I read previous questions posted where they say mul...
Given a stylesheet with various rules, some of them being for hyperlinks, I would like to present each rule (only those containing "a" tags) along with the current value for "color" to allow the end user to click on a colorpicker widget and change the color. Using jQuery Ajax with PHP to save the updated color back to the stylesheet.
Fo...
If I set a style inline like this:
<div id='myMenu' style='background-color:red'></div>
Then in JS call
alert("document.getElementById('myMenu')style.backgroundColor");
The result alert box would report "red"
However if I set the style internally in the via a class or id
<style type='text/css'>
.menu {
background-colo...
Hi there all you good people. I'm having a hard time with this iPhone SDK thing.
I want to show a text as an html file with a picture. But the thing is, that with the first way I can't get the picture shown only with danish characters and the second way the picture is shown but with no danish characters. In the second approach I can us...
Hello,
I am working on gather sports statistics for a personal hobby project. I found this site with all the info I need:file:///Users/JohnJNichols4/Desktop/view-source%20cluster.leaguestat.com%20download.php%20client_code=ahl&file_path=daily-report%20daily-report.html
Am I able to parse this site with xpath? I only have experience (...
Homework assignment:
Add a page to the Internet site to collect demographic information for a customer mailing list.
We want to collect customer demographic information in order to send out information to our customers about sales and in-store events. We want to capture the customer's name, mailing address, e-mail address and telephone...
I have a HTML <textarea> that I want to be able to make when the user pushes enter in the textarea it results in a linebreak when the string is stored in a variable and printed on the page.
How would I do this? I have seen it done before but I am not sure how to do it.
...