The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
26 views

Show json data with php

I cant print out the data contained in the json, here's my code: $string='{ "tonysacaoficial": { "id": "379656405412890", "about": "Candidato presidencial por UNIDAD, ex presidente ...
0
votes
1answer
47 views

Link to change div content “<div lang=…”

using the script descripted below, i was wondering if there was a way to put a link on the page to allow users to change the displayed language after the page is loaded. Initialy, it displays the ...
0
votes
0answers
15 views

Hide/show form for a particular user

I wan't to show a particular form to the admin user, but I wan't to hide the form for other users. I have tried evrything but it doesn't work. Code: <?php if($user_profile['id']=='562004018'){ ...
0
votes
1answer
18 views

.hide and .show displaying all elements and not functioning properly until user scrolls

Hello so I am working on a vertical scrolling site where fixed central image (the main character) hide and show depending on where the user is on the page using .scrolltop. The only problem I have is ...
0
votes
3answers
43 views

Fade in when hovered with Javascript

Hi I've been trying to make div2 and div3 to appear when I hover over div1 but mine doesn't seem to be working. Also, I don't want to use jquery. Here's the jsfiddle: http://jsfiddle.net/AbEZm/ Html: ...
0
votes
1answer
30 views

Image from sql database not showing on PHP [closed]

I have this code on php: $query = "select * from product"; $result = mysql_query($query); <?php while($row = mysql_fetch_array($result)) { echo "<tr>"; echo "<td>" ...
2
votes
3answers
51 views

(jquery) Prevent div from hiding when I click it

I have this code that toggles(shows/hides) a div and another code that hides it when I click elsewhere in the body. Trouble is when I click on the div itself, it hides, which is what I want to ...
0
votes
1answer
43 views

jQuery: hidden divs need to re-appear

I have a couple of products lined up next to each other in a div and i'm using this script to hide the one by one. At some point they have all disappeared and I would like to have them all re-appear. ...
0
votes
1answer
30 views

show if 1 checkbox checked, hide if SEVERAL UNCHECKED jquery

Hi I would like to figure out how to do some logic on a checkbox dilemma. I have a listing for a video with tags associated with it. It has a corresponding checkbox. When the checkbox is checked ...
0
votes
0answers
13 views

Show box-shadow through transparent object (div)

I'm working on a css3 3D page and i want to show the shadow through a transparent div but i can't get this to work... I can't use a span or anything because it needs to be the same object because of ...
0
votes
0answers
28 views

Events on FullCalendar using CodeIgniter

I'm trying to use fullcalendar with code igniter and the events are not displayed. For now i have some simple code lines to test it but i cannot get them work. Here's what i have: In the developers ...
0
votes
3answers
27 views

ui.draggable to show if confirmation is canceled.

I made a quick list, where each item can be moved to a trash can. I set it so once you track it onto the trash, it hides. If you hit ok to the "confirm", then it is fully removed with remove(). The ...
0
votes
0answers
15 views

Simple Nav Issue - Involving jquery's .show fuction

Hi I have a mini nav how do I make it so for example if you click on #HOG and #CAT (#green) is showing it will show #red (#HOG) but if you click on #HOG and #red is showing it will hide #red, sorry i ...
1
vote
3answers
63 views

Jquery show number within div in alert

hi i want to show number with in Div in alert like this <script> var sec = $('#demo').html(); alert(sec); </script> <div id="demo">100</div> code most be show 100 ...
0
votes
5answers
62 views

.change() hide <select> .click() .show() <select>

I want to hide a select box after choosing an option and put in place the value as text. That is what's working. The next thing I need is, to be able to click on the text and show the select box ...
1
vote
4answers
80 views

form.show set focus to underlying Form

D5pro. I have a sub-form of the main app, Form1 with a Memo1 the the user can add text to. I have a FormHelp that is only for viewing (contains MemoHelp.ReadOnly:=True). In Form1 the FormHelp can ...
1
vote
0answers
88 views

MessageBox.Show Causing Exception

In my application, I have the code below for saving an excel file: ... try { workbook.SaveAs(filename, ".xls"); } catch (IOException ex) { MessageBox.Show(ex.Message, "Error saving file", ...
1
vote
0answers
33 views

click image list form mysql show div and hide other all image

I have an issue you would like to ask for help. I have an issue you would like to ask for help. I have an image list from mysql (img1, img2, ... imgn) I want to click on each image, it will show a ...
0
votes
3answers
47 views

Show and hide divs

I'm still new to this so yeah... Basically, I've got this drop down element and each option in that element is supposed to direct to a different question (that corresponds to the topic of the option), ...
2
votes
2answers
66 views

jQuery .show() only works for a split second

I have a div <div id="fade_bg"> <div id="login_div"> <form action="../classes/login/Authenticator.php" method="post"> <p>username: ...
1
vote
1answer
26 views

Action Script 3. Timer appears after 1 second

I'm creating flash game and here are timer which shows how long player is playing on current level. Problem is that when game starts here is no timer, It appears only after 1 second and then It shows ...
0
votes
0answers
18 views

Show/Hide divs when fixed size div scrolls/overflows

I have a fixed size div with dynamic content, set to overflow-y: scoll; The effect I'm trying to achieve is if the inner dynamic content is larger than the outer div size and the user starts ...
0
votes
0answers
14 views

Passing Data to layout page

if (Membership.ValidateUser(model.UserName, model.Password)) { string login = model.UserName; string pass = model.Password; var pharmacie = (from p in db.PHARMACIEs where ...
0
votes
4answers
43 views

identify div inside (this) to show with jquery

http://s199881165.onlinehome.us/transfem/newlayout/indexlisttrypopupquestion.php Above is a page that i am working on. You will find that if you mouseover the tiles in the timeline a bunch of divs ...
-1
votes
0answers
13 views

Dialog .Show attributes [closed]

Regarding the dialogs Microsoft.Office.Interop.Excel.Dialog does anyone have a complete list of the attributes needed for the show method for each type of dialog? And a description of which dialog is ...
0
votes
0answers
37 views

jQuery show, fadeIn, queue

I've got an HTML form. The user can click on, let's say, 2 buttons: 1 - The first buttons fires an oData request to the server (it's not really AJAX) 2 - The second buttons fires some other logic. ...
1
vote
1answer
30 views

Nicescroll show/hide

I'd like to hide/show nicescroll on if function it looks like on html there are 3 sections which are scroll from left to right 1 by 1 and script is var section2 = ...
0
votes
2answers
62 views

How can I hide/show a div when a button is clicked?

I have a div that contains a register wizard, and I need hide/show this div when a button is clicked. How can I do this? Below I ahow you the code. Thanks :) <div id="wizard" class="swMain"> ...
0
votes
1answer
45 views

Link onclick add link id to Selector

I'm trying to add the id of my link to the selector in my function so that .XXXXXX1,2 or 3 is shown or hidden depending on which link is clicked. Here's the code I have put together so far: I've ...
1
vote
2answers
48 views

Hide/Show Based on Radio Button Click

I've been searching for a few hours now and haven't been able to get an aspect of my code working. I have two radio buttons for a div, and I want it so if I select Yes, it shows one slider, if I ...
0
votes
1answer
31 views

How can I identify external keyboard being accessing the UITextfields

In my iOS application I am using accessory view as well I am shifting the view when keyboard is launching. But when i am using external keyboard (Bluetooth device) i do not need to show accessory view ...
0
votes
1answer
104 views

How do I change position of a hide/show div depending on which trigger link is clicked?

I have a content div that contains a client's social profile links. Both the top navigation and footer navigation contain links that I would like to trigger this panel. If the top navigation link is ...
0
votes
4answers
42 views

PHP Get Form issue

I have the following quote: <form class="searchform" name="search" id="search" action="<?php echo base_url();?>video/search" method="get" > <input type="text" ...
0
votes
1answer
26 views

Show a default item (javascript)

I want to show an default item when a page loads with this script. At the moment it is only possible when someone clicks on the 'newboxes' items. function showonlyone(thechosenone) { var ...
0
votes
1answer
107 views

Show hide divs using animate function

Hello I am trying to animate few divs from the bottom of a page, when user clicks on certain links. E.g is a link that says 'About' is clicked on, I need that div to slide up from the bottom to a ...
0
votes
3answers
50 views

Showing an image

I came to a matlab code where it first reads an image and converts it to double as follows: I = double(imread(img)); After that, it shows the image as follows: imshow(I/max(I(:))) What does that ...
0
votes
3answers
49 views

Dojo - don't repeat yourself

Is there a simpler way to write something like this in dojo (instead of having a function for each thing i want to show or hide)? I know there must be a way to avoid such repetition but I'm not sure ...
2
votes
3answers
89 views

Show div once clicked and hide when clicking outside

I'm trying to show the #subscribe-pop div once a link is clicked and hide it when clicking anywhere outside it. I can get it to show and hide if I change the: $('document').click(function() { TO ...
0
votes
1answer
53 views

show and hide divs based on path

Thanks in advance. I've tried to piece this together based on numerous other posts and examples, but can't seem to make it work. What I'm after seems straightforward enough: show and hide particular ...
0
votes
2answers
46 views

ProgressDialog not showing up despite show() is called

I've got a strange problem, a Dialog being created and called for "show()" but not being visible in my activity... The thing is it goes through the call "show", I've seen it in the debugger, but ...
1
vote
4answers
41 views

remove a a class and then hide it with jquery

the following code i have does not seem to work. $("ul li a").live("click", function() { $(".myMegaMenuDiv").addClass('hideit').delay(300).removeClass('hideit'); }); I have a mega menu, so ...
0
votes
0answers
16 views

Hover to hide div and show another with fade in/out animation

Hover to hide div and show another with fade in/out animation I want something like "SHARE" on this site : http://www.myowncorks.com/
0
votes
3answers
79 views

jQuery Best way to show list items one by one

I would like to show list items one by one by clicking on a button. Here is my code: <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script> <script> ...
0
votes
2answers
47 views

click multiple elements to hide or show something - jquery

here is my script. Now i can click one of these IDs and class "inputs" are visible. What i want is that I have to click on all elements. $('#zwei,#sechs,#neun').bind('click', function() { if( ...
-1
votes
1answer
45 views

more than 1 checkbox need to hide or show div [closed]

whats wrong with this code?? http://jsfiddle.net/CLYC6/ <input type="checkbox" class="test" name="test" value="test" /> <div id="test" style="display:none"> test </div> ...
0
votes
2answers
31 views

Showing Categories in wordpess loop

HI I have added a loop code to a WP page to display a list of thumb of posts. It works fine, but it shows each post I have published, even if isn't in the categories choosen. It's a problem because ...
0
votes
3answers
43 views

jQuery one element event influence another

What Im trying to achive is to show/hide one div if input field somewhere is focused. Show works but it wont hide it. Im new to jQuery I cant figure it out whats wrong in my code. ...
2
votes
2answers
64 views

jQuery show/hide for one item only on a page

My problem is that I have some table data that gets loaded into the page from a MySQL database with a PHP while loops, it lists a teams results. In that loop there is a table row that gets hidden by ...
-3
votes
0answers
48 views

Error show image servlet/jsp after create file correctly

code with create png. Image is create. But i don't show qrcode.QrCode("Francesco",filePath,size,fileType); request.setAttribute("message","CrunchifyQR.png"); page jsp <img ...
0
votes
1answer
36 views

Show image when button is clicked

I have this div: <div id="flaw"> <img id='flaw1' src='images\flaw1.png'> <img id='flaw2' src='images\flaw2.png'> <img id='flaw3' src='images\flaw3.png'> ...

1 2 3 4 5 22