make menu like skype?
How do you make a menu like http://www.skype.com/ (Mouse over the menu and the menu appears...) ...
How do you make a menu like http://www.skype.com/ (Mouse over the menu and the menu appears...) ...
Hello and good evening dear Stackoverflow-friends, First of all.-This is a true place for learning. I am new to programming - and i am sure that this is a superb place for all novices! I am a beginner - and i learn the most in practical situations - real live situations...So here is one! I like Web::Scraper because it is a web scrape...
Hello, I have a blog of code written such as this: <div class="box"> <div class="statusbox"> <div class="cleft">some stuff</div> <div class="cright">some more stuff</div> </div> </div> and this is the CSS code for it: .box{padding:10px; border: 1px black solid;width: inherit;} .statusbox{border-bottom: 2px #736f6e s...
If I have a <ul> list that has the rule "list-style-type: none" (and the rule "background-image: url(whatever.jpg)" for the <li> items), I can't seem to override those rules if I have a <ul> list as a child of one of the <li> items. I want to make the child list have the classic style "list-style-type: disc", but the browser seems to ign...
I didn't find any answer on web with vb.net (I find millions of samples with c#) I translated a sample controller to vb.net but doesn't upload My ResimController.vb <AcceptVerbs(HttpVerbs.Post)> Public Function Anasayfa(ByVal forms As FormCollection) As ActionResult Dim errors As Boolean = False If String.IsNullOrEmpty(forms(...
Hi! I'm using ExtJS (html/css) and I've got a question regarding Layout. Example: |--------| | | | | | | | | | | |--------| | | | | |--------| The combined height (they don't have any padding, margin etc.) is 100% of it's parent container. Preferably, it's two panels somehow stacked on...
Hello, I'm wondering if anyone has had any experience modifying print settings via a web page. My overall goal would be to setup a print button on a web page <a href="javascript:window.print()">Print This Page</a> And at the same time modify the users print settings to print the page from a landscape view. Input on if this is even po...
I'm planning on recreating some fo the iPhone form elements in HTML/CSS but I'm assuming this already exists. I tried googling it but didn't find anything. Anybody seem something like this already in existence? ...
Hi, I've seen this somewhere, but I don't remeber the page. I'd like to extend the HTML tags, so then I can add my own attributes to the HTML elements, I saw a example where the developer added a new xmlns to the page definition, so he could add new things and still be a valid XHTML. What is the name of this technique and where could ...
Hello, I am trying to build a filterable listing of Resumes for a Club website that I work on. My goal is to be able to a all the resumes (in PDF) in a folder on the web server. I would Then like to offer the option for a user to generate a listing of Names with associated Link to the PDF document Like "Name Resume Li...
I am trying to get the css sheet to load on my dev comp. It is in the media directory as "media/base.css" In my base/base.html template, I have: <link href="media/base.css" rel="stylesheet" type="text/css" /> I found http://docs.djangoproject.com/en/1.2/howto/static-files/ but that didn't fix it. Any ideas? ...
Hi, I'm trying to create a table where each row is a form. I want that each input is in a different table division, but I still need that for example, all first inputs belong to the same table head and so on. What I'm trying to do is an editable grid. I dunno if I've explained myself, more or less this: <table> <tr> <form...
Hi, I have the following seems to work in Internet Explorer but not Chrome. Can anyone please explain why, and what I should do to correct it. <iframe id="confirmed_list" src="./meets/confirmed.php?meet_id=$1" scrolling="no" width="80%" onload="document.getElementById('confirmed_list').height = confirmed_list.document.body.scrollHeight...
We have a client that wants to use a third party shopping cart on their website, but the URL we'd have to send our clients to looks pretty ugly and there is no way to do any skinning. The client brought up using an iFrame to keep the shopping cart on their website. If both sites had SSL so that at least the padlock would still be there,...
Hello, all! I have various inputs, selects and textareas in a form. I'd like to select one of them based on name without knowing the type of the element with jQuery. I know I can do something like $("input[name=foo], textarea[name=foo], select[name=foo]") but I wonder if I can do it in a more concise way. What do you say? ...
I need display data from a web page in a ListView, for example if I were to send a request to a time server for the U.S. time zone's times and the web server responded with an HTML web page that contained the current time's of each zone and a small icon image of each geographic region time zone, what steps would I need to take to put tha...
Hi, I have a header file which has the html <head> tag in it. I'm trying to set the <base href="/mysite/"> in this file, but when I include it (such as into my index.php file), it doesn't actually change my base href. Any absolute URLs in index.php (e.g. /css/style.css) try to load from host/css/style.css rather than hosthost/mysite/css...
I'm building a RoR site, and today I get the pagination done. Upon showing it to my coworker, his first question is "what happens if you set the querystring to "?page=-1". It died with a runtime exception (error 500). He suggested that that should definitely be fixed before this site goes anywhere near live. I happen to disagree with hi...
Is there a way to programmatically within javascript call the native click event of an tag? The .trigger('click') or .click() functions will not work, because they are triggering the onClick event of the link and not the event that follows the URL. I need to programmatically click a hidden link and follow that link to a new tab within t...
I am trying to move a div Left a specified amount of pixels I'm using a slider that I got from here: http://carpe.ambiprospect.com/slider/archive/v1.3/ So from the example my div looks like this: <div class="horizontal_slider" id="your_slider_id" style="left: 0px;" onmousedown="slide(event, 'your_slider_id', ...