hide

Jquery - Hide every visible DIV but not #div1 (and all childs)

Hi, here is my code $("div:visible:not(#div1)").hide(); The Problem: the DIV-Childs from #div1 are hided too :( kind reagards Peter ...

Tapping a UIScrollView to hide the keyboard?

I'm working on an iPhone app which involves typing stuff into a UITextView, which adds content to a UITableView. The problem is, I need to be able to close the keyboard when the user's done with it, and the only area that is really visible other than the keyboard and UITextView at this point is the UITableView. I'm having trouble impleme...

Tapping a UIScrollView to hide the keyboard?

(I posted this before anonymously, but then couldn't use the same computer again, so I'm posting it from my account now. Sorry to the guy who answered before.) I'm working on an iPhone app which involves typing stuff into a UITextView, which adds content to a UITableView. The problem is, I need to be able to close the keyboard when the ...

Hide a table and change some text

I need to write a little Javascript to hide a table (by adding the hidden style class) and then change the text of the link to represent the state. The hiding part works but the changing of text does not. Here's the javascript... function toggle(idToHide, hiderID) { var element = document.getElementById(idToHide); var hiddenCla...

How to make QTabWidget without pages

I with to use the tabs of QTabWidget but I don't need the pages as containers. I need only the tabs. Is there a way I can hide or disable the page containers and display only the tabs? ...

jQuery element in a div and clicking area.

Hey. I have a big DIV called #bigDiv. In this div I have other elements like menus and images. I want jQuery to toggle the #bigDiv every time user clicks the #bigDiv NOT other elements (which are parts of this div). How to do this? For example: index.html: <div id="bigDiv"> <ul> <li><a href="site">Site</a></li> </ul> jQuery: $("#...

hide/show jquery not working in IE

I have a select menu that shows/hides the "livetransopts" div when an option is clicked. Works fine in Firefox, Chrome etc but not in IE can anyone help me???? <select> <option class="hidelivetrans" value="No">No - Don't transfer the call</option> <option class="showlivetrans" value="Yes">Yes - Transfer the call</o...

Hide/Unhide Div JavaScript functions not working in IE, Safari, and Chrome

I am trying to cause a div (which contains a table) to hide based on a users selection from a dropdown. It works fine in FireFox and Opera, but IE, Safari, and Chrome do not work. Any suggestions? <style> .hidden { display: none; } .unhidden { display: block; } </style> <script type="text/javascript"> function hideDiv(divID)...

Hide my real ip address when i'm surfing a php page

Hi , This php function return the real ip address of clients : function getRealIpAddr() { if (!empty($_SERVER['HTTP_CLIENT_IP'])) //check ip from share internet { $ip=$_SERVER['HTTP_CLIENT_IP']; } elseif (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) //to check ip is pass from proxy { $ip=$_SERVER['HTTP_X...

jquery hide() and Internet Explorer 8 compatibility mode.

I have been using jquery hide() and html() function a lot. Lately, I have been noticing some weird behaviors on IE8 in compatibility mode. Say, I submit a form via $.ajax({ ... }). Before the submission, I display a "saving, wait!" message and hide the button. On success i clear this message and display the "save" button again. My pr...

Start application via batch hiding console

I've made an easy batch to start an application (it opens a pdf in pdf reader): @ECHO off start ../folder/index.pdf When I launch my batch, the console is shown for a couple of seconds and then is closed when the reader is launched, Is it possible to hide the console when I launch the batch? So on launching the batch only the reader ...

Checkbox shows hidden field - not working onload

I am using this probably ugly javascript to show a text box (in a li tag plus its label) if a checkbox is checked. $("#li-2-21").css("display","none"); $("#Languages-spoken-and-understood-8").click(function(){ if ($("#Languages-spoken-and-understood-8").is(":checked")) { $("#li-2-21").show("fast"); } else ...

How to resize UIViewControllerWrapperView

I'm trying to display an UIImageView within a tab on an iPad. I hide the tab bar and I want the UIImageView to take up the entire screen, ie be full screen. I try resizing everything in sight and the image will not occupy the space used by the tab bar. I've tried debugging, printing the frame for each view going up the view hierarchy. Ev...

jquery hide objects if object class doesn't contain a value

Hi all, The title might be a bit confusing, basically I'm trying to write up a script which will grab the selected values from a drop down form, and hide li's if its class does not contain the values from the drop down form.. if that makes sense?? Each li has multiple classes.. Here's what I've got so far (sorry if it's crude): FORM:...

How to hide column of devexpress XtraGrid

Hai all, Am using devexpress XtraGrid in C#.NET application.On run time i want to hide 1 column of XtraGrid and access that column in code behind page.And please help to access rows and columns of XtraGrid. Thank You ...

PHP Recent Forums Don't Display Certain Forums

I have set up a way for the last 5 posts to display on the home page of my site. I would like to hide 3 specific forums (I looked up the id's and they are 24, 25, 35. Just in case that means anything). I can get them to hide, however, it will not show 5 posts. So I want to be able to show the 5 most recent skipping those 3 forums, while ...

hiding login form with Jquery

I created login from that when clicking submit button sends variables to login_success.php page.but I want to make that when I click submit button login form will be close. I can close form using Jquery <script type="text/javascript"> $(document).ready(function(){ $("button").click(function(){ $(".loginform").hide(); }); }); </sc...

Use Eclipse PDT (or Mylyn) drilldown, without the clutter

Hi everyone, I am becoming a frequent user of eclipse, and I like it. However I find myself wondering: Is there a way I can use eclipse drill-down and then hide everything in enclosing folders except the folder that I'm drilling into? (kind of how Mylyn filters stuff, but without me having to build a context) I would like to do this,...

how can I call variable out side of $.ajax ?

I am trying to make condition to call chain function in Jquery. I used $.ajax in Jquery submit function to get values from login.php and I am trying to call fadeOut function to close login form. If login succes form will close then there will be some Success message and then it wil lalso close. And if error then form will remain and als...

jquery hide div if child div doesnt exist

Hi all, I was wondering how I could hide a div if the child div doesn't exist inside it. Each div will contain a h2 tag, but if the div doesn't include a div named "info" I'd like it to be hidden. Here's the structure: <div class="qaContainer"> (this div can stay as is, as it contains an "info" div) <h2>Testing Category 03</h2> <d...