Hi,
I have a div on a HTML page and whenever I press the mouse and move it, it will show that "can't drop" cursor like it selects something. Is there a way to disable selection? I tried CSS user-select with none without success.
...
Hello,
i want to build a website with following features:
2 Frames.
1 Frame with am edit box and a button.
The second frame should show a page whitch is secured by username/password.
Is there a possibility that a sepcified user is always logged on?
The problem is: I can't edit any thing on the page of the second frame.
I have to use ...
I've been staring at this for too long. I've put alerts throughout and the flow is correct. The styles exist. The body starts with the "styleBlack" class. The condition of the if statement is met and the body's class becomes "styleLight". A second call meets the condition of the else statement but the innerHTML of mDiv does not chan...
Is it possible to include multiple css at once in html? Or to be precise, is it possible to include all css placed in a directory, in one go?
like at present what we do is:-
<link type="text/css" rel="stylesheet" href="./tabs_css/navigation.css">
i need something like:-
<link type="text/css" rel="stylesheet" href="./tabs_css/*.css"...
Every time I need to write a piece of JavaScript which monitors an input box, I usually end up doing something like:
$("#field").keyup(myHandler).keydown(myHandler).change(myHandler);
It’s not perfect, but it usually works in most cases, and so I move on. I just happen to have a little bit of time to investigate this properly. Probabl...
I've got an html table that is being generated with php.
This list can have records of over 20000 records, so I added a paging on this list.
In this list you can modify the rows you like, when you hit save, it saves the changes in a temp table and only after you hit apply changes, the actual changes are applied in the main table. Befor...
Hello,
Normaly i always manage to fing a soultion with my css problems.
But it's driving me crazy.
I trying tu place my list correctly on wordpress (sidebar widget).
(i tried divs, but still doesn't work under IE). so here is the html code and some screenshots
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www....
How would I go about seeking or pausing an embedded video (not necessarily a swf) from javascript? I am looking for something like Google's SWFObject's API, but for Windows Media Player, Real Player, Quicktime.
...
We've built what is called a one page web app(a single html page + ajax)
In the pursuit of shaving as much http calls as possible, we bundled the JS and CSS in 2 files.
Meanwhile we took a look at the way Google Buzz for mobile is built and there are some interesting points:
inline SCRIPT and STYLE
no external JS and CSS
data:images ...
I need to make form which will be used to rank the students in a class - i.e. best student is rank 1, next best is rank 2, worst student is rank N (where N = number of students in the class, in this case generally less than 10). What's the best (easiest to use, most accessible) interface for doing this, with the caveat that it needs to w...
User has html-form, then user fills all field and data transferred to PHP script.
How do would data send, but not refresh html page?
...
Hi All,
I need to display a table in a web page. The data from the table comes from database which I can query using mysql php library. I am looking for a template/example of how to come up with a nice looking table (I am not good at front end design :().
Any link/example/references will be appreciated. Thank you.
...
I'm not even sure if this is possible. Can you create a hyperlink or an embed tag that will display a specified page/section of a pdf document?
...
What is the meaning of a ^ sign in a URL?
I needed to crawl some link data from a webpage and I was using a simple handwritten PHP crawler for it. The crawler usually works fine; then I came to a URL like this:
http://www.example.com/example.asp?x7=3^^^^^select%20col1,col2%20from%20table%20where%20recordid%3E=20^^^^^
This URL works fi...
I've been search the WWW for a while and can't seem to see what I'm looking for... I need a piece of code that will allow my page to move on when someone uses the arrow keys to move forward or back. PLEASE HELP! THANKS... :)
...
I have a list of input type radio buttons in formview (edit mode) and i want to bind data from datasource that is assigned to formview.
Can i bind html radio buttons using sql datasource?
...
I looked at some other questions like this one but they don't address this particular issue:
When I run this code in IE (8):
$("<tr><td>1</td><td>A</td></tr>").appendTo("#myTable tbody");
I end up with this HTML being added to the table's body:
<TR>
1</TD><//TD>
<TD>
</TD>
A</TD><//TD></TR><//TR>
</TR>
Any idea? Thanks in advance...
Hi,
I am creating a lightweight, single-file database administration tool and I would like to bundle some small icons with it. What is the best way to embed images in a HTML/PHP file?
I know a method using PHP where I would call the same file with a GET parameter that would output hardcoded binary data with the correct header, but that...
I'm just about finished writing a backend for a website in PHP/MySQL/jQuery, but my jQuery colorboxes aren't working in older versions of IE and Firefox.
Steps to reproduce problem:
1. Navigate to http://swstrailers.com/
2. Scroll to the very bottom and click the Login link in the right corner
3. Leave the fields blank and click the Log...
I'm currently creating a Word document by generating HTML and changing the header information to display as a .doc file. It's a poor man's method, but it works just fine (until now).
I was just asked to include an image in the file. My best idea was to base64 embed the image. This works fine in a browser, however Word just gives me a...