JQuery :: Creating A Favorite Links Menu, Removing Cloned Content?

Nov 18, 2010

I have several drop down lists of links with one of the drop downs being a "My Favorites". My intent is that when the user clicks on a star image next to the links, it is cloned and appended to the favorites menu, where it can then be drag and drop sorted. To remove the link from the favorites menu, the user can either click on the "x" button to the right of the link on the favorites menu, or unselect the star on the main menus.

I have successfully cloned the link and appended it to the favorites menu by selecting the star and enabled the drag and drop sorting, but I am having trouble removing the link form the favorites menu when unselecting the star and when clicking on the "x". Here is what I have so far:

var me = '';
$('div.star').toggle(function(me){
var me = $(this).next('a').text();
$(this).addClass('favorite').next('a').clone(true).appendTo('ul#myFavs1').wrap('<li></li>').before("<div class='dragHandle'><img class='png' src='_images/dragHandle4.png' width='11' height='11' /></div>").after("<div class='remove' title='Remove from Favorites'></div>").attr('id', me); return me;}, function(me){[CODE]...

So, I clone the link, wrap it, add a drag handle and the 'x' button, give it an id of the text of the link which all works fine. I have a different part of the script that uses the drag handle to drag and drop the links...that works fine. The issues I am having are that unselecting the star does not remove the link from the favorites drop down and clicking on the 'x' does not even fire the alert. The z-index on the 'x' is higher than all the other elements in the li.

View 2 Replies


ADVERTISEMENT

JQuery :: Menu Links Show/hide Content In Another Div?

Oct 11, 2011

how to write a script where when a link is clicked in the left nav column, it will display text in the right main column. So, when you first arrive to the page, nothing will appear in the main portion of the site. Content only appears after clicking on a link. When you click on another link, the previous content is hidden, and the new text is displayed. Here's what I have so far:

HTML
<div class="container">
<div class="nav">
<ul id="menu">

[Code]...

View 4 Replies View Related

Creating A Carosuel Menu With Content?

May 25, 2011

i need to make a vertical menu which load different images/text on the right side of the menu. i need to do it in ajax. how can i achieve it?

View 4 Replies View Related

Cloned Selectbox Will Not Refresh Content

Jan 19, 2006

I have two selectboxes containing several option. I am able to move options from one selectbox to the other selectbox (by .insertBefore for example).

However, when I clone those selectboxes, the cloned selectboxes behave incorrect. I am able to move options from one to the other, but they won't show correctly. Only after a browser resize or minimize/maximize window will the selectboxes be 'refreshed' to reflect their real content. See the following code example. Bottom selectboxes are clones of the top ones. Code:

View 6 Replies View Related

Cloned Select Menu

Apr 19, 2005

This is handy when making dynamic forms. Will reproduce and return a duplicate of an existing select menu. Just pass the id of the select you wish to clone.


function cloneSelect(objid)
{
var sel=document.createElement('select');
obj=document.getElementById(objid);
var len=obj.childNodes.length;
for(var i=0;i<len;i++)
{
if(obj.childNodes.item(i).text)
{
var opt=document.createElement("option");
opt.value=obj.childNodes.item(i).value;
str=document.createTextNode(obj.childNodes.item(i).text);
opt.appendChild(str);
sel.appendChild(opt);
}
}
return sel;
}

View 4 Replies View Related

JQuery :: Menu Navigation - Submenu Links Have A Rounded Box Appear Under Them Instead Of Being Underlined Links

Aug 26, 2009

My menu navigation(Home, Hosting Solution, etc..)

1. The submenu links need to be centered in the middle of the div instead of aligned to the left.

2. Can the submenu links have a rounded box appear under them, instead of being underlined links. Like these at the top: [url]

3: The top tab needs to stay gray/active/on when the mouse is moved down to the submenu or when it is the active button.

Here is the link of the site [url]

View 2 Replies View Related

JQuery :: Dynamically Creating / Removing Items From List

Jun 3, 2009

I'm trying to dynamically create and remove items from a list, it works just fine. Sort of, I can remove items, and create items, but once an item has been created, I cannot remove it again, but I can remove the items present when the page loads.

Here is my code
<div class="list">
<div class="item">
<input type="text" value="" /> <a href="" class="removeitem">Remove this item</a>
</div><div class="item">
<input type="text" value="" /> <a href="" class="removeitem">Remove this item</a>
</div><a href="" class="additem">Add item to list</a>
</div><script type="text/javascript">
// Add item to list
$('.additem').click(function(){
var template = $($(this).prev().get(0)).clone();
template.insertBefore($(this));
return false;
});
// Remove item from list
$('.removeitem').click(function(){
$(this).prev().parent().remove();
return false;
});
</script>
I can remove the 2 original items, but when I create new ones, they cannot be removed.

View 1 Replies View Related

JQuery :: Cycle Plugin Creating Links?

Aug 28, 2009

I would like to link each image in the cycle to a specific page.I got it to cycle and everything is working fine. I just want it so that the actual image is clickable.

View 2 Replies View Related

JQuery :: Menu Page Adding And Removing Items?

Aug 30, 2011

I would like to have two columns, the left column showing all available items with an add button. The right column showing all of the added items, and then adding these together to provide an order total, but with the ability for users to add to the quantity or remove from their order.I have the add item to order bit working on, and the sub-total is working.I started to try to add on add/remove buttons to the right #your-order column but am getting stuck.Every time a user adds another item to their order, more buttons are added, and I can't get the "remove item" button working.The page is located here:URL...Should I paste the jQuery code I am using here?

View 3 Replies View Related

JQuery :: Featured Content Slider Using UI Not Functioning Within DHTML Tab Menu Content

Dec 20, 2010

1) Script Title: Ajax Tabs Content Script (v 2.2) and Featured Content Slider Using jQuery UI

2) Script URL (on DD): [URL]

3) Script URL of Featured Content Slider Using jQuery UI [URL]

4) Script URL of my implementation of both script. [URL]

5) Problem: I've integrated the featured content slider in one of the default content section of the tab menu as you can see on the link on point 4. The slider is working perfectly when until i click on other tab menu and then back tab menu 1. The slider seize to work no more and worst the other featured content slides are appearing below the first one.

View 6 Replies View Related

Need Help Removing Content

Jan 4, 2011

My goal with a script I am writing is to remove signatures from a forum I am a part of. Some of the people abuse it with half a page of stuff and it's out of control. So here is what the HTML source code for it looks like

<table cellSpacing="1" width="100%" border="0" class="tback" cellPadding="2">
<tr>
<td width="100" class="headcell">Author</td>
<td class="headcell">Topic</td>
</tr>[CODE]...

The very bottom where it has the 'span' tag and it says "SEC Champions" is where the Signatures are located. I want to completely remove that using my script and this is what I have right now

function sigRemove() {
var sigs = document.getElementsByTagName('span');
for (var i = 0; i < sigs.length; i++) {
sigs[i].style.display = 'none';}}

I know it's incomplete but I only want to remove that bottom span tag and everything inside of it and not every span tag on the page.

View 8 Replies View Related

Creating Temporary Links That Expire?

Jul 23, 2005

I am developing a web site for a summer comedy series. The site has
links to buy tickets but I want them to disappear two hours before the
show begins. Does anyone know how to use a simple javascript that
shows and hides text and links after a date has passed?

View 3 Replies View Related

Creating Links In A Dynamically Created Div

Sep 20, 2009

im trying to create a script for greasemonkey but its still written in javascript. so here is what im trying to do. Ive got a dynamically created division that aligns to the right of the browser window. Now im trying to put links inside it as you normally would with like a document.write statement or other methods. The only problem is, any method i try wont work for me. heres my code, maybe someone could give me some things i could try.

[Code]....

View 19 Replies View Related

JQuery :: Loading Links URL Into Content DIV

May 12, 2009

I successfully loaded a list of links (e.g. <a href="info2.php">More info</a> into the #submenu div using the first part of the code below, and want these links, when clicked, to load their URL into the #content div.

$(function(){
$('#submenu').load('submenu.php');
$('#content').load('info.php');
$('#submenu a').click(function() {
$('#content').load(href);
});});

View 3 Replies View Related

JQuery :: Creating Vertical Scroller For Content DIV

Aug 5, 2011

I am currently working on creating a vertical scroller and have got so far but have got stuck on some of the functionality.

My HTML looks like this
div class="outer">
<div class="slider-content clearfix"><ul>
<li><img src="images/img1.jpg" width="200" height="200" alt="img1"></li>
<li><img src="images/img2.jpg" width="210" height="200" alt="img2"></li>
<li><img src="images/img3.jpg" width="220" height="210" alt="img3"></li>
<li><img src="images/img4.jpg" width="210" height="200" alt="img4"></li>
<li><img src="images/img5.jpg" width="200" height="200" alt="img5"></li> .....

My CSS is as follows
*{margin:0px;padding:0px;}
li{list-style:none;float:left;height:200px;width:200px;}
.clearfix { overflow: hidden; display: inline-block; }
.clearfix { display: block; }
.outer{margin:45px auto;position:relative;height:500px;width:515px;border:1px solid #333;overflow:hidden;}
.slider-content{position:absolute;top:0px;left:0px;}
.top-hover, .bottom-hover{width:515px;height:50px;background:#ccc;}
.top-hover{position:absolute;top:0px;z-index:500;}
.bottom-hover{position:absolute;bottom:0px;}

And finally my JS
$(function(){
$('.outer').prepend('<div class="top-hover"></div>');
$('.slider-content').after('<div class="bottom-hover"></div>');
//Get height of outer container and slider
var outerHeight = $('div.outer').height();
var contentHeight = $('div.slider-content').height();
// Calculate cut off point of displayed contents
var contentExcess = contentHeight - outerHeight;
//store end point of scroll
var maxTopScroll = 0 - contentExcess
var speed = 45;
var hovered = false; .....
//If scroll reaches max then stop
alert('No movement');
}},
function(){
return false;
});});

Currently the scroller moves up and down when you hover over the top and bottom buttons however you have to keep moving in and out of the hover area in order to get the scroller to move. How can you make it so that it will do a continuous scroll of the scroll-content div. Also currently the script has no way to limit the end of the scroll-content div and I cant seem to get it to stop once it gets to the bottom of this div.

View 2 Replies View Related

Creating Mouseover Events For Dynamic Links In JS

Mar 12, 2010

My application reads an array of URLs in Javascript and displays them in a table. I need to create mouseover events for each of the links (just an alert message for now.) I have tried this a few ways, but for each one the mouseover event fires for each link before anything else is loaded on the page, and when the page is loaded, no link is displayed. Here are the two ways I've tried:

var cell1 = document.createElement("TD");
cell1.innerHTML = '<A HREF= ' + url + 'onMouseOver="' + alert("my alert box"); + '"> my page </A>';
cell1.innerHTML = '<A HREF= "' + url + '"> my page </A>';
cell1.onMouseOver = alert('alert');

I have also tried many variations of these including:

[Code]..

View 3 Replies View Related

JQuery :: Creating A Menue That Fades In And Out Specific Content?

Dec 6, 2011

I am trying to create a menue that takes elements with one of the following selectors .cata, .catb or.catc and fades all not matched elements out while fading the matched elements in (if already faded out). When one of the links ist clicked a second time (in faded in status) then all elements .portfolio (.cata, .catb and .catc) should be faded in.verything is working like charme. The only problem is, that I can't get all elements .portfolio displayed, when I trigger the link a second time.Here is what I did in jquery:

$(function(){
$('.aktiv2').click(function(){
$(".cata, .catb, .catc").css({opacity:'0'}).show().animate({opacity:'1'},{duration:600});

[code]....

View 1 Replies View Related

Bookmark Code Leaves %20 In Browser Favorite?

Jun 1, 2009

I have a site where I'm using a home-grown social bookmarking tool. The user has an option to "Bookmark this page" to their browser.

My code works, but the problem is that when I dynamically grab the document.title, the browser (both IE and FF) tries to resolve any spaces or special characters so that when the favorite is stored in the browser, the bookmark reads:

"This%20Site%20Bookmark"

instead of:

"This Site Bookmark"

I feel like there must be a simple function to resolve spaces, but I'm coming up blank, no pun intended...:)

View 3 Replies View Related

Ajax :: Favorite Tag - OnClick Change Status

Jun 22, 2009

I have been working on favorite blog on my site. I have done this with radio button. But I want to do this with AJAX. Like it has on flikrs.com. If you click on favorite tag it will show the bright star or something that indicates its your favorite photo. Or if you again click on that star it ll become dull, like its no more of your favorite photo.

View 6 Replies View Related

JQuery :: ReplaceWith Links Not Working In The Replaced Content?

May 31, 2011

I'm utilizing the replaceWith(); function on a page to simply replace content in one area with new content with corresponding buttons.

Problem is I really want to have slimbox on my images that I am loading into this new area, and the links will not work. Oddly enough the code recognized that it is a link, it just won't play the slimbox animation, it just opens the image normally.

The code I have in a function file linked from the main page (portfolio.html) is:

$('#graphicOne').click(function() {
$('#descrip').replaceWith ('<div id="descrip"><div class="floatRightPortfolio"><h4><em>"Embrace your Environment"</em></h4><p class="right"><a href="portfolio/embrace.html" rel="lightbox" title="Embrace Your Environment"><img

[Code].....

So basically there's a descriptive area on the right hand side, and the buttons are on the left. Inside the descriptive area is the title, and then the image.

You can view the site here: [URL]

View 1 Replies View Related

Creating Links That Opens A Newly Targeted Window And Changes The Current One

Jun 30, 2010

Anyone know how to create this in JS? User clicks on a link, the link opens a new window with new webpage AND the page that had the link then changes to a new webpage as well. So end the end that link takes the user to two new pages. For instance, I am on PageA.html and I click an <a href="">Link</a>. Link take me to a newly targeted page called PageB.html. Then at the same time PageA.html turns into PageC.html.

View 1 Replies View Related

JQuery :: Accordion Menu Links Not Working?

Feb 5, 2010

I followed a tutorial on here about Expanding Sliding Menu's or Accordion Menu's.Here is the script:

$(document).ready(function(){
$(".Left #SideCategoryList ul#parent-cats ul:not(:first)").hide();
$(".Left #SideCategoryList ul#parent-cats ul:visible").hide();

[code]....

View 4 Replies View Related

Jquery :: Accordion Menu - Links Do Not Work

Jan 12, 2009

Why my submenu links dont work and why the submenus are taking a set height. I'm just learning jQuery and cant figure out what I've not set properly. [URL]

View 1 Replies View Related

Removing Menu And Addressbar For Local Html Application?

Apr 7, 2010

I know what your first reactiopn is going to be> "You shouldn't be doing that". I know this, but my work wants it done for a locally installed html.

Is there anyway to control this onload? It will be launched from an icon(shortcut) on a desktop.

View 1 Replies View Related

JQuery :: On Link Click - Reload Whole Page - Show Only The Content For The Links

Aug 6, 2009

I'm using a jquery slider for displaying content on a webpage.

[url]

Like in the first examples i have 5 panels, and i have a meta navigation, contact, links ect. all thedifferent content for the meta-navigation is displayed via jquery in panel 5, and is working fine.

Now my question; when the user is for example on the second panel, and the clicks on links, the page should show panel 5 (which is the index page(default.asp)), and then show only the content for the links.

I tried different stuff for loading the defautl.asp page, but it doesn't work. how do i tell, that if i click on the link wirh class="kontakt" the page should load the default.asp, and THEN do all the jquery stuff?

Below is one example, what i tried, but did not work.

View 1 Replies View Related

JQuery :: Removing Table,tr,td Wihout No Removing Contents?

Jun 5, 2010

i have situation that i need to remove table that is automaticly generated, but i also need to not remove contents of table.

<UL>
<table class="mytable" width="100">
<body>

[code]....

View 2 Replies View Related







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