Hey, I am fairly new to the whole coding game as well teaching myself how to execute the fbml mark up language properly. Currently I am trying to develop an application for revealing hidden content once a facebook user "likes" a specific page. I have looked at several different forums, blogs, as well as applications to get me off to a ni...
Hello!
I have long text that gets hidden if it exceeds 300 characters. Hiding is done with a <span> that has style="display:none;" set.
Basically, after the 300th caracter the rest of the content in wrapped inside that display:none span.
The algorithm is clever enough not to break text in the middle of a tag, so the invisible span wil...
Hi all,
I have a problem with missing pixels on QVGA screen on Android (all versions including 2.2). The original problem was with LinearLayout and margin="1px". It was OK on the normal screen but on QVGA there was sometimes no space between GUI controls, like if margin="0px" and not 1px. So I tried to make the example simple (to be sur...
I'm trying to span content across multiple pages (divs) set at a height of 950px per div, so I can properly output to pdf.
I start off with one div which nests all of the content using overflow: hidden. Ideally I'd like to use jquery to find content which is out of the viewing scope (hidden), but I can't see any functionality to do thi...
First off sorry i had to add -- to my links because of spam prevention;)
Here is the file with the hidden div "yes" checkbox toggle working perfectly>>
--http://myvirtualltciguy.com/help/Checkbox_Toggle.html
This is the .js file that makes it work>>
--http://myvirtualltciguy.com/jquery/check3.js
Here is the file with the lightbox fe...
Here is my code where i am trying to send back the values in the from and to field to the same page. At the top of the page i have this code: (it always echos 'in else loop', i dont understand what is wrong with this simple thing.)
if ($_POST['ok'])
{
if (isset($_GET['from']))
{
$tmp_fromdate=$_GET['from'];
$tmp_todate=$_GET['to'];
echo...
I want to add my product description to paypal shopping cart and I am using html hidden fields to send form data.
can anyone suggest what should I pass inorder to display product description?
Thanks in advance for your co-operation.
...
I really hope someone can advise on displaying a google map from a hidden div.
I have a google map which I want to show a user if they click on a link ie, Show Map.
Putting the map in a hidden div just does not work at all so I went with hiding the map -1000px on a position absolute css value.
This has given me much better results but...
I have a table that has a row that is hidden using display:none. I want to show the row when a button is clicked. How can I do this??
<table>
<tr>
<td>
<button class="shownextrow">Show Next Row</button>
</td>
</tr>
<tr style="display:none">
<input type="text" name="input"/>
</tr>
</table>
...
I'm trying to create an application that adheres to the following:
No Taskbar
No console or form window
Can utilize Console.WriteLine(). (i.e. If someone executes the app from command prompt it will actually write to that console.)
The problem is if I create a Windows Form (or WPF) application I can have it so that there is no taskba...
document.getElementById("spinner2").style.visibility="visible"
Visibility visable/hidden is very slow on Blackberry (OS4.6).
screen seems to be redrawing which makes it unusable in Ajax application.
The goal is to put visible feeback to user while ajax request completes.
Anyone suggest alternative?
...
Hi, Im trying to create a page that allows a user to select a maximum of 8 checkboxes out of 25 checkboxes total, While at the same time detecting the exact order the user clicked the checkboxes.
My question is, What code can I add to the javascript to gather this info and pass it along to a page named check_combination.php I have been ...
This excellent article on implementing a Hidden Markov Model in C# does a fair job of classifying a single bit sequence based on training data.
How to modify the algorithm, or build it out (multiple HMMs?) to support the classification of multiple simultaneous bit sequences?
Example
Instead of classifying just one stream:
double t1 =...
Hello,
I just got stuck with the following C++ compiler error:
no matching function for call "EPTDerivedException::HandleClass( BaseClass& )"
candidates are: void EPTDerivedException::HandleClass( DerivedClass )
I cannot explain this, because there should be a function HandleClass( BaseClass ). This is the calling code:
BaseClass oB...
Hello All,
I have few hidden fields in my jqGrid on which I have to perform a case insensitive search (may be using regex - not sure). Is it possible? Can someone give me directions on it?
Thanks!
...
I have a set of radio buttons inside a div which has a fixed height and overflow:hidden. Some of the radios get hidden because they would be naturally positioned outside the height of the containing div.
When a radio is selected, and that radio is outside the visible part of the div, the div gets scrolled.
What I want is to be able to...
Say I have a website www.abc.com. Under the website directory there is a page secret.html. It can be accessed directly like www.abc.com/secret.html, but there are no pages that link to it. Is it possible to discover this page, or will it remain hidden from outside world?
...
I'm trying to create a drop down menu similar to what you would see with a 'ul'.
The difference being I want to do it with a table.
When the page loads I have td's with their 'display' attribute equal to 'none'. This hides the td for me.
The problem is in the javascript below.
function displayMenuOptions() {
var _1 = do...
Hi all,
This should be an easy one. I have a variable that I've already declared called $listItems. The declaration looks like this:
var $listItems = $ul.children('li'); // $ul is just a selected unordered list
Later in my code, I'd like to only get the ones that are currently visible. How would I go about that? Something like:
$lis...
Hi all,
This should be an easy one. I have a variable that I've already declared called $listItems. The declaration looks like this:
var $listItems = $ul.children('li'); // $ul is just a selected unordered list
Later in my code, I'd like to only get the ones that are currently visible. How would I go about that? Something like:
$lis...