JQuery :: Show Of Our Portal System Based On DotNetNuke?

Jun 5, 2009

Just wanna show of our portal system based on DotNetNuke jQuery and jQueryUIWe took the sortable example and modified it withup down movement animationslide into placesmooth animationdrag to delete and click to delete restore functionality

Inspiration was the <a href="http://bbc.co.uk">bbc.co.uk</a> site
<a href="http://www.2dnn.com/DragnDrop/tabid/128/Default.aspx">http://www.2dnn.com/DragnDrop/ta

[code]...

View 2 Replies


ADVERTISEMENT

JQuery :: Drag And Drop Portlet System Based On DotNetNuke?

Jun 5, 2009

Just wanna show of our portal system based on DotNetNuke <span class="il">jQuery</span> and jQueryUI We took the sortable example and modified it with up down movement animation slide into place smooth animation drag to delete and click to delete restore functionality

[Code]...

View 1 Replies View Related

JQuery :: (.) Period In Value Field - Show/hide A Div Based Based On The Selection Made Via A Dropdown

Apr 9, 2010

Im using a jQuery script to show/hide a div based based on the selection made via a dropdown.

<script type="text/javascript" src="jquery-1.3.2.min.js"></script>

The problem im having is that the value used in the dropdown lists are price values eg 10.00

Consequently jQuery seems to interprit these as css notations, meaning the code doesnt work.

View 4 Replies View Related

JQuery :: Plugin In Websphere Portal Which Uses Dojo - Error Persist While The Page Is Loaded

Nov 5, 2011

We are using jquery plugin in websphere portal which uses dojo, one objservation is both use $ sign to start the function.

We have tried following.

1) We have put statement for jquery conflick $j = $.noconflict();

2) Still error persist while the page is loaded.

3) After this we have find Replaced $ with $j in all plugin files still it says $j is undefined. Do we need to replace it at all places or on specific places? Please see below code how it looks like after replacing $ with $j and let us know if this is correct.

View 1 Replies View Related

JQuery :: Show / Hide DIV Based On Selected Value Of Tag

May 29, 2010

I have a simple jQuery code that shows or hides a DIV based on the selected value of a select tag. Currently it looks like this and it's working fine:
if (selected == "0") jQuery("#divPublishDate").show('slow')
I want to add an else so that the if the value is anything other than 0, I want to hide the div. What's the proper syntax in this case? I assume this is the short version of an IF statement without the { }.

View 2 Replies View Related

JQuery :: Hide / Show Based On Scroll?

Mar 29, 2010

I've got a fixed div that has a fixed tab as a trigger. I'd like to only show the trigger tab when the user scrolls down the page "X" pixels from the top (say like 200px). Can someone point me in the direction of implementing this?

View 4 Replies View Related

JQuery :: Show Div Based On Checkbox's Checked?

Oct 4, 2010

I have a list of about 20 check boxes and I want a div to show when 3 have been selected as "Yes" option, how do i go about doing this?

Here is my html code:

<form>
<ul id="quiz-list">
<li>1. My bed partner complains that I snore.
<input id="select1" name="snore" type="radio" value="Yes" class="static_class style1" />Yes

[Code].....

View 5 Replies View Related

JQuery :: Show/hide Div Based On URL Parameter?

Feb 13, 2010

I have a div that should be hidden on default, but when a certain URL parameter is present, then the div is visible.

[Code]...

View 3 Replies View Related

JQuery :: Show Input Box Based On Select Value?

Apr 14, 2011

It shows an input field when the select value is "dropped". The problem I am having is that if I select "dropped" it will display the input field, but if i select a different value AFTER selecting "dropped" the input field is sill displaying. How would I get it to hide the input field if it is NOT selected?

<!--SHOW/HIDE DIV-->
<script type="text/javascript">
$(document).ready(function(){
$('#dropped').hide();

[Code].....

View 2 Replies View Related

JQuery :: Show Form Fieldsets Based On Select?

Jan 19, 2011

Basically I have 3 fieldsets

Field set 1 has 4 selects, for selects 1-3 I wish to show fieldset 2 and hide fieldset 3, and for select 4 i wish to hide fieldset 2 and only show fieldset 3

They all currently have fieldset ids:

fieldset 1 id = choice
fieldset 2 id = server
fieldset 3 id = forum

fieldset 1 currently looks like this:

<fieldset id="choice">
<legend>Service</legend>
<ol>
<li>

[Code].....

View 2 Replies View Related

Jquery :: Hide / Show Div Based On Radio Class?

Apr 18, 2010

what i have are 3 radio buttons at top of my form, the first radio option i would like if selected to open a div that contains new questions on the form... then if the other radio buttons are selected they hide that div.

View 1 Replies View Related

JQuery :: Hide/Show Based On Radio Button Selected?

Sep 14, 2009

I am trying to create a script that will display content based on if aradio button is selected, and if the other is selected would hide thecontent. Now, each of these radio buttons are part of a radio group,so their names are the same. Most examples show nput:radio[@name=item] Since I have 2 items that have the same name, I can't usename, so I thought I would try id or value. It isn't working. If I addonly the show, whenever you select either radio button, it shows, andif I add the hide code, it doesn't work at allHere is what I have right now.

$(document).ready(function(){
$('#offices_checkboxes').hide();
$("input:radio[@value=1]").click(function() {

[code]....

View 2 Replies View Related

JQuery :: Hide/show Divs Based On Form Parameters

Jun 13, 2009

I'm trying to selectively hide and show divs based on what a user specifies using three select boxes in a form. I'm probably missing something obvious, but here's what I've got and it doesn't, work, they divs just stay hidden.

<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript">

[Code].....

View 2 Replies View Related

JQuery :: Show / Hide Images Based On Checkbox State?

Apr 13, 2010

What you can see is that I have a bunch of images which form a chart, each of the images has multiple classes.I want to write a function which when called fades in/out images dependant on whether all related checkboxes are checked or not.Checkboxes are related to the images by id on the checkbox and class on the image, as I'm sure you can see. I will be calling this method each time a checkbox is checked.

View 2 Replies View Related

JQuery :: Show / Hide Table Rows Based On Groupnames

Oct 21, 2011

Say, for example, I have a table with an undefined number of rows. Row 1 contains number 1 to 10, row 2 contains 11 to 20... you get the picture. The table is autogenerated and id's are made unique by the system (GUID's plus id). I am able to add a 'name'attribute to'img''sthat are in the td's and add a groupname i.e. '11to20'. Using this i want to test showing/hiding grouprows. Now I have a dropdownlist on the page where the user selects the groupname from
i.e."11to20". I would like to be able to hide the rows not having the selected groupname
and show the rows that do. I've constructed a query that would hide the selected groupname but it hides all tr's.
$(obj).attr('name', obj.options[obj.selectedIndex].value).parents('tr').siblings().fadeOut('fast');

Here's the (simplified) sample html I constructed by hand for this message:
<fieldset class="my-form"><div>
<div class="NumberSelector"">
<label for="ChooseNumber">Choose a number</label>
<table id="ChooseNumber" cellspacing="10" border="0" style="width:542px;">
<tr><td><label for="ChooseNumber_1">
<img name="1To10" src="/images/number1.jpg" alt="number1" onclick="ImagePopup(this);"/> .....

View 3 Replies View Related

JQuery :: Show Or Hide A Single Section Of A Form Based On The Value Of A Select Box?

Aug 2, 2011

Using jQuery, the hide show part is easy. I need to show or hide a single section of a form based on the value of a select box. More specifically, if the select box is one of 30 countries, then show, else hide.

What's the easiest way to handle this?

View 4 Replies View Related

JQuery :: Show/hide Form Elements Based On Radio Button Selections ?

Mar 17, 2011

I have a set of radio buttons on my pricing page:

And a corresponding text_field input element div I'd like to display based on which radio button the user selects:

When the page loads, I'd like to see:

When the user clicks on a (different) radio button, or clicks one for the first time, I'd like whichever div is currently showing to be hidden, and the newly selected one to be shown.

Right now I have jQuery code at the bottom of my page that looks like this:

For each of the four options.

When the page loads, the correct div is shown, and when I select a new button, the new div is shown, but the already showing one isn't hidden.

I've read some posts that suggest using change() instead of click(), but others indicate that's problematic in IE.

View 1 Replies View Related

Show Div Based On URL?

Apr 29, 2010

I would like to show a Div based on the URL.

I'm using PHP to update a database and the page just refreshes when it's done. I'd like to set the URL to something like [URL]

So if the URL had ud=y in it, it would show a div with a specific ID.

View 3 Replies View Related

Show Div Based On Weekday?

Aug 19, 2009

I have 5 divs, and I want to have each of them visible seperately on a certain weekday. In pseudo-code:

if today=monday, show div "bla1"
if today=tuesday, show div "bla2"
etc.

"bla2" should not be visible if it's monday, etc.

I've struggled with trying to bend existing scripts to this purpose but I can't get it working.

View 2 Replies View Related

Show - Hide Div Based On Cookie Value

Nov 12, 2009

I am trying to finish a script that shows a particular div based on the last 2 chars in the cookie value. I have the cookie part done. how to show hide part.

View 7 Replies View Related

Show A Field Based On Another Fields Value?

Mar 9, 2011

I am trying to show a field based on another field's value and hide it it initially... like when you want students to select their schools if they have gone for education ortherwise the school field remains inactive...I have the folowing scipt but it is not being fired on page load...

<script type="text/javascript">
function OnPageLoadAdd(pageid)
{
var tName = 'dbo.Register';

[code]....

View 9 Replies View Related

Show - Hide Div Based On Checkbox ?

Aug 21, 2011

I know from scouring the Web that this is a very common Javascript question, but I have a twist on the question which is giving me headaches, and I hope some of the brilliant minds here at DaniWeb can help show me the error of my ways.

Say a user has checked a checkbox when submitting a form. I have a PHP script that records that check in a MySQL record. Later when they visit the page, the PHP script shows the checkbox as being checked. That's all working fine.

Now here's what I'm TRYING to do: Since the checkbox is checked when the page loads, I want a certain div to show up. And when the user UNchecks the checkbox, I want the div to go away. Simple, right?

Here's the Javascript I've placed in the header:

In the CSS, I've styled a div thusly:

And here's what I'm doing in the <body>:

This should show up when you click Yellow Box. And it should go away when you click it again. </div>

When I uncheck the checkbox (first click), nothing happens: the div still shows up.

Then when I re-check the checkbox (second click), the div goes away.

And then when I un-check the checkbox again (third click), the div comes back.

In other words, it's doing the OPPOSITE of what I want.

It seems that when I click the checkbox the first time (to uncheck it), the Javascript pulls an empty value. Only with the second click is it finding a value ('none').

View 3 Replies View Related

Show - Hide A Div Based On A Cookie?

Dec 28, 2009

I have a script I am trying to use to show or hide a div id. It uses a cookie, set on link click, to remember if the div should be displayed or not.

It works, but I'm having two problems:

1) The function only shows/hides the first instance of the div, not all instances.

2) Reloading the page after an initial cookie set causes the div to always initially be displayed regardless of the last cookie value (cookie seems to automatically re-set itself to 'tutor-show').

Here is the code:

You can see it in action here: uomeds{dt}com/cbl/cbl-2.htm

View 1 Replies View Related

Show Image Pop-up Based On Selection?

Apr 3, 2010

On www.vellusiaremyhair.com/order.php I set it up so the larger image shows based on the thumbnail clicked.With JavaScript can I make that "ZOOM" link to the large version of the image that is selected?

View 3 Replies View Related

Show Ad Based On Screen Resolution?

Dec 29, 2003

I was wondering if you had any idea how to show a ad based on screen resolution. Sort of like how espn.com has it...when your on 800 by 600 it doesn't show the ad and msn table on the right but when you are on 1024 or higher it does. Does anyone have any idea how to do this?

View 1 Replies View Related

Show - Hide Based On Content Within Div

May 6, 2011

I would like to show or hide a header element (e.g. <h3></h3>) based up a div tag that either contains content or not. The content is dynamically added or shown, but the header element isn't, which results in having the header element shown with no content below it many times.

Here's an example:

View 2 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved