I'm working on a webpage where I used this code to display random images. I used it for three images in a row and I keep getting white spacing in between them when they should be right up against each other. This is the code I'm using:
I have done some work using javascript and css and html. Let me explain whole work: there are two select box one is for adults and other is for childs. I have done all rows are by default are invisbile when we select 2value from adults its will show two rows for adults and maximum we can select 6 adults so i have write 6 rows are invisble for adults and if we slect 2 from childs then it will show 2 rows for childs. By default it will be already invisible. But now problem is that i want to remove this space between child row and adults rows which i have done invisible.
[Code]...
But problem is that i want to remove this space from between child and adults ,and childs and other code . Because for adults max value we can select 6 and for child also we can select max 6 so these other 4 rows for adults and childs are invisible in code.
Basically the php gives the javascript a list of movies located in my directory, I am able to successfully launch any movie not containing a "space." I changed the code a little bit to allow for a "text input" and manually typed the name of a movie with %20 instead of a space and it worked. So I would like to modify the above code to do this automatically without visibly changing the movie titles. I am not sure where I should change the code.
I am creating a class for all of my code snippets, using a formatted paragraph (and "word-wrap: pre") to keep formayting intact. The problem is that in keeping my HTML files formatted nicely, they are indented, and due to the "pre" formatting the indentation is kept. Code:
how do I get rid of the space between the top div and the following div sections.I need to know what to replace the <br> tag with where I stop the floats with "style='clear:both'".how to slide the tab body sections into and out of the area below the top controlling <div> sections.All it does now is simply hide or show the sections and I would like to create a sliding illusion if possible.
I am trying to split a url string for example the url ishttp://www.xx.com/museum designand the string is museum designIn firefox/ie/chrome it returns as museum%20designbut in safari it returns as museum design
Code: lastpart=lastpart.split("%20"); // works in firefox/IE/Chrome lastpart=lastpart.split(" "); // works in safari
I have a 3 textareas that when the user presses the spacebar I would like for the code to execute a TAB to move between them instead. My code works if I make the replacement keycode an number or letter but it wont work if I use TAB. The browser is IE. code...
What I have is a file upload input (as part of a larger form) and I want to get some javascript that will replace spaces in a filename with another character, such as an underscore or dash. If possible, I would also like to be able to replace commas with an underscore or dash.
I've been designing a web application that scales to fit the available window space in the web browser so that there is no need to use the scroll bar (and the whole point of the application is to fit the window). I've already figured out how to catch resizes and change the height of the elements on the page (It's pretty simple using onload, onresize and document.getElementById().style.height), but I can't seem to get an accurate height to scale the web content with. The height I want is not the height of the document (Which would be the height of the content...which is what I'm trying to change in the first place!) and not the height of the window (Because if I'm not mistaken that includes the status bar, the tab bar, the URL bar, etc. which can vary between browsers). I need the height of the available web space that I can fit my content into. This would be the space between below the tab bar and above the status bar (To make my height as clear as possible I've provided a link to a screenshot). How can I get this height with Javascript (And I really need it to be cross-browser because I want this app to be able to work on multiple browsers)?
Screenshot (For some reason the DaniWeb Attachment System just refuses to upload my image and gives me a blank page each time I upload the screenshot so I'll just upload it to an image host): http://img15.imageshack.us/img15/4186/screenshothyb.jpg
I would like to have a blank space to separate the options in the "Select Color/Size drop down box" I would also like to have an alert('Please select a size'); show up if someone chooses the blank space. I have tried to do this but my attempts have been fruitless so far. Code:
I have some value from textarea id the use is not direct type in the textarea , but copy their type from some where them the format get change , a lot of empty space is create, the the pop up message become confuse, How can I deal the situation like this.
I wrote the following function to get a font metrics table and it works for all printable characters except spaces. Does anyone know how I could get the width of a space char with known font, size etc...?
I tried several different variations on the "node.style.whiteSpace" line and also tried using an html entity (which gave me the width of the string ' ') but nothing seems to work. All I'm getting for spaces is zero width.
javascript Code:
function JSFontMetrics(inFont, inSize, inWeight, inVariant, inStyle) { var node= document.createElement('span'); var text= document.createTextNode(''); var width = 0;
I want to dynamically resize textareas to always have enough rows to hold the data, so there is never a need for a vertical scroll bar no matter whether the user types in large paragraphs or only puts one character per line. Is there some kind of existing facility for doing this? Perhaps in a library? Or maybe there is a property of the textarea which can be checked in a row-incrementing loop to determine whether a scrollbar is still needed.
i'm trying to create a tree menu, each time i click into a category it shows me the subcategories.My code works fine but i have some spaces between a category and his subcategories, it's not a css problem
I using JQuery to call back asp.net web service, The web service is simple, only query from SQL Server and return result as JSON. everythings is cool. Only problem is the key of dictionary after Deserialization by eval() method,It cannot access. For example:
as a little side-project, I want to make a search engine that behaves similar to the "Just Type"-Feature of Palm webOS: When the user presses a key somewhere on my site, a box scrolls in containing the typed letters and the search results. In order to realize that, I bound a "keydown" event to $(document). I have but one problem: the "space" key. It is correctly recognized, the space is concatenated to the search term; but then, the site scrolls down (found out it's the default action when pressing space in the browser). How can I stop this pagescroll (and maybe other standard-actions) from happening, i.e. my event should recognize the keydown, but not the browser? I tried event.stopPropagation() and event.stopImmediatePropagation(), but somehow it doesn't work. Event when I add "keyup" and "keypress" to the mix (code below).