Ajax :: Ability To Link Directly To Specific Tab

Mar 11, 2010

I am currently using this template by flowplayer.org: [URL]. The functionality I need is the ability to link directly to a specific ajax tab (i.e. Seagram Building, Barcelona Pavilion, New National Gallery). As of now they are just line items without any anchor tags.

View 9 Replies


ADVERTISEMENT

Ajax :: Open A Link From Tree Into A Specific Frame?

Nov 16, 2010

Code... I can open it up in the current page, but the menu is in a frame and I need to open it in a fram called "home".

How can I do that?

View 5 Replies View Related

Jquery :: Cycle Plugin - How To Link Directly To Slide From External Page

Jun 15, 2010

I've set up a portfolio using the Cycle Plugin. It works great, but now I want to link directly to one of the slides from the home page, and I'm not sure how to make this work or where to even begin. Here is a page on my site with a slideshow using Cycle. (I'm actually transitioning divs, not just images) [URL].

View 1 Replies View Related

Ajax :: Returning A Value Directly From A Function?

Dec 1, 2009

I'm attempting to simplify my javascript code when it comes to ajax, but afterwords it only prints 'undefined' to the screen rather than what I want it to print.

I want to be able to put something like this on my main page onclick="document.getElementById('output').innerHTML = print_output();" where print_output() is the ajax function. This way I don't have to use a function to assign values directly to innerHTML and I don't have to muck about with a js file whenever I want to change my page layout.

To do this, I created a recursive function:

function print_output(return_value) {

if a value has been passed to the function, simply return it
if(return_value || return_value == 0) {
return return_value;
}

[Code].....

but like I said, it prints 'undefined' out to the screen. Why isn't this printing the contents that it receives from 'index.php' like it's supposed to?

View 2 Replies View Related

AJAX :: User To Be Able To Edit The Data Set And Have Those Changes Written Directly Back To The MySQL Database?

Jul 11, 2010

I have a form.On the form I have a drop down box that allows the user to select a data set to work with (A or B). The table loads just fine and all is right with the world. No problems there.What I need is for the user to be able to edit the data set and have those changes written directly back to the mySQL database. They also need the option of deleting a record entirely.I know how to do all the database queries, updates, etc. I just don't know how to write the ajax forms to accomplish this.

View 4 Replies View Related

JQuery :: How To Link To Specific Tab

Jan 29, 2011

We use for a project the following code for tab navigation. Now the client wants to link directly to a specific tab from outside (for example to tab 3). Is it possible to modify this code with less work or I have to switch to Jquery UI Tabs and build it up again?

/* - TAB SWITCH - */
$(document).ready(function() {
$(".tab_content").hide(); //Hide all content
$("ul.tabs li:first").addClass("active").show(); //Activate first tab
$(".tab_content:first").show(); //Show first tab content
$("ul.tabs li").click(function() {
$("ul.tabs li").removeClass("aktiv"); //Remove any "active" class
$(this).addClass("aktiv"); //Add "active" class to selected tab
$(".tab_content").hide(); //Hide all tab content
var activeTab = $(this).find("a").attr("href"); //Find the rel attribute value to identify the active tab + content
$(activeTab).fadeIn(); //Fade in the active content
return false;
});
});

And in the html:
<ul class="tabs">
<li class="aktiv"><a href="#tab1"><span>Tab 1</span></a></li>
<li><a href="#tab2"><span>Tab 2</span></a></li>
<li><a href="#tab3"><span>Tab 3</span></a></li>
<li><a href="#tab4"><span>Tab 4</span></a></li>
</ul>
<div id="inhalt">
<div id="tab1" class="tab_content text"> .....

View 2 Replies View Related

How To Link To Specific Images In A Javascript Slideshow

Jul 23, 2005

I have a popup window which is a slideshow of about 7 images. When the
popup window loads, the first image is present and then the viewer can
select next or previous to scroll through the rest of the images.

I'd like to use the same popup window at different points throughout
the website and have the Virtual Tour (slideshow) open up at the
appropriate photos. Meaning I'd like to control which picture the
popup window opens up to, depending on where the user is in the site.

Does anyone know where I can find code that does this? I am somewhat
familiar with Javascript but would like to find some ready-made code
which accomplishes this.

View 2 Replies View Related

JQuery :: Open A Specific Tab Via An External Link?

Jan 27, 2011

How to open a specific tab via an external link?

View 3 Replies View Related

Need A Specific Link To Load As Active Color

Sep 18, 2002

I am trying to figure out how to make a certain text link load in the active link color. What I'm doing is using frames to display different colors of product. In the right frame is the list of colors, and when clicked on, the image in the left frame changes to show the same product in a different color.

What I need is to let users know which image is being shown when they first come to the page, so I would like that link to show in the active color when the page is first loaded and then change to a visited link when another link is clicked on.

View 1 Replies View Related

Link To Iframe Page (load Specific Content)

Oct 22, 2005

I have PAGE1 with the link to PAGE2 with iframe. (iframe load several
naked html). I want to add directive to the link to point sprcific
content of iframe. to make it clear

link on PAGE1 -> load PAGE2 with iframe -> iframe content is specified
on link = whole PAGE2 with iframe with desired content...

solving problem with creating several different PAGEs2 poining wanted
iframe src is not the case.

View 5 Replies View Related

Ability To Refer To Function By Variable

Mar 26, 2010

I have a function that sets a value of this.name. If I call a function of that function (is there a better term for that?), I can get the value of that name with this.name. However, if I save that function's function as a variable, and THEN call it, this.name is undefined.

I don't think my vocabulary is clear enough, so here's my example:
function Ninja(name){
this._name = name;
this.getName = function(){
return "ninja "+this._name
}}

sam = new Ninja("sam");
assert( sam.getName() == "ninja sam", "Ninja's name is ninja sam" );
sam2 = new Ninja("sam2");
sam2getName = sam2.getName;
assert( sam2getName() == "ninja sam2", "Ninja 2's name is ninja sam2" ); //fails
log("Ninja 2's name is actually "+sam2getName()) // actually "ninja undefined"

(Note: Use of "ninja" and assertions are because I was playing with the code in John Resig's java runner thingie: [URL]). The reason I want to be able to refer to a function by a variable is because I want to pass the function to something else that requires a function to be passed in, such as an ajax callback or something. Anyway... why is this.name undefined in the second example?

View 7 Replies View Related

DOM Range - Ability To Add Custom BBCodes?

Dec 22, 2010

First of all, I am not a student and this is not homework. Secondly, I've been programming in C, Motorola assembler, Intel assembler and even GWBasic for years. I recently (this year) got into Web / Javascript / PHP / HTML programming and I'm clawing up the learning curve. I know a fair amount, but have a long way to go. I've been trying to integrate a WYSIWYG editor (TinyMCE) into a bulletin board software package (PHPBB3). All is working well except for one big stumbling block that I've been battling for the past MONTH!...: I want to support the original BBCode system of PHPBB3 (mostly because of the ability for the admin to add custom BBCodes).

So, what I need to do is this:
(1) Select a range of text.
(2) Either REPLACE it with "selection" or else INSERT "" before and "" after.
(3) Lastly, the original selection must remain selected so that additional BBCodes can be wrapped without the need to re-select.

The purpose of (3) is, say, the user clicks "bold" and "italic" and "underline".... all they should have to do is click those 3, not re-select each time. I've tried doing this:
(1) get the selection range
(2) get the selection text
(3) delete the range contents
(4) create two "contextual fragments" (one for the opening tag, the other for the closing tag).
(5) create a <span> element containing the selection text
(6) Insert it all into the range with range.insertNode()
(7) finally select the new span element

This seems to work fine, but Internet Explorer : fails (it complains when I try to get the selection range).

View 9 Replies View Related

JQuery :: Get Specific Content (from Div, P) From $.ajax

Apr 22, 2009

How I can get content from remote file by $.ajax? For example I have some file temp.php:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Test file</title>

[Code]....

how I can get for example content only from div with id=header2 or both divs (not hole data - msg)?

View 2 Replies View Related

AJAX :: Call A Specific PHP Function?

Dec 23, 2008

I was wondering if it was possible to call a specific PHP function using AJAX instead of calling a whole page. An example:

function MakeRequest()
{
var xmlHttp = getXMLHTTP();
xmlHttp.onreadystatechange = function()
{
if(xmlHttp.readyState == 4

[Code]...

I already have a PHP function (in a class) that retrieves the provinces/states from the database based on the country. I was wondering if it was possible to call this function instead of having to make a new file (in this case FindProvinces.php) that calls the function.

View 4 Replies View Related

Summary Of Checkbox Values With Recalc Ability?

Jan 18, 2010

I have a pricing page that is broken into multiple categories per phase. I want a customer to be able to select my checkboxes and hit a button that will display a rolled up total. I also want it to be able to re-calculate the totals if a box is subsequently unchecked. I have browsed and searched the form to get the code to where it is now but need help to finish it.

View 10 Replies View Related

Enable The Ability To Always Delete <li> Elements When They're Clicked?

Mar 1, 2011

I want to enable the ability to always delete <li> elements when they're clicked. I can't add id's or onclick functions to each <li> because each one is made using document.createElement("li"); So my question is, how can I make a script that easily allows users to delete a <li> element just by clicking on it.

View 6 Replies View Related

AJAX :: Calling A Specific PHP Function Or Class?

Jul 2, 2009

Just getting my feet wet with AJAX and trying to figure out how I can make a javascript call to a specific PHP function in another file when I have a drop down menu change value using DOM. I've found lots of examples of how it could be done with GET variables, but none for this particular method of data retrieval. Has anyone ever ran into this, and if so, how did you solve this interesting deliema?

View 6 Replies View Related

Ajax :: Return A Specific Portion Of A Php Page?

Jun 13, 2011

I am using a dropdown box with 6 options. On change I want ajax to return part of an HTML/PHP page that corresponds to one of the 6 questions. I was trying to put and if statement on the return page to determine the part that I wanted but I didnt work. I rather not create 6 HTML/PHP files for each of the options. Here is part of the CODE

CREATE A:
<select name="mychoice" onchange="onchange_getform(this.value)">
<option>----Select----</option>

[code]....

View 4 Replies View Related

AJAX :: Call To Specific Funtion In Library

May 26, 2009

I want to make AJAX call to specific funtion in library. Is there a way not to create new file for this?

View 5 Replies View Related

JQuery :: Make An Image Map Area Link To Another Page And Open A Specific According Section Via Slide Toggle?

Oct 31, 2011

How to make an image map link to another page AND open a specific accordion section?I guess I need a script that knows which area of the image map was clicked and not only navigate to page 2 but opens the section via slide toggle I need it too.Here is the the page with the image map (although image map version not upload yet so I have what will be uploaded below)[URL] ...and the page I need to navigate to based on the area of the image map clicked and also slidetoggling the div I need it [URL] Here is the image map:

<html xmlns="http://www.w3.org/1999/xhtml">
<body>
<img src="/Img/Illustrations/kicktalkv2.jpg"" alt="Kick Talk" usemap="#kicktalk_map" />

[code]....

View 2 Replies View Related

JQuery :: Ability To Access 'data' Attributes Without Having To Use .attr()?

Dec 27, 2011

I make use of new HTML5 data attributes to attach data to DOM elements like so:<div class="foo" data-randomdata="bar">jQuery is awesome.</div> It would be nice to have a specific method to accessing the attributes without having to use the .attr() method like this: var foo = $('div').attr('data-randomdata'); It would be nice for it to work something like this: var foo = $('div').DOMdata('randomdata'); //equals bar

View 1 Replies View Related

JQuery :: Lose The Ability To Resize A Div After Setting InnerHTML?

Jan 22, 2011

I've got resizable divs:

$(document).ready(function() {
$
(".draggit").resizable({

[code]....

View 3 Replies View Related

JQuery :: Ajax Event Tied To Specific Post?

Oct 19, 2009

I have an ajax event,

$("#ajaxStarted").ajaxStarted(function....)

that i am using for a $.post call.

The problem I have is that elsewhere in the application there is another $.post call doing something unrelated.

i was wondering if there was means of tying my event listeners to specific post events?

View 4 Replies View Related

AJAX :: Pull In Specific Element From Separate Page

Nov 25, 2009

I'm trying to find out how you would pull in specific elements from a HTML file using AJAX.

For example, my AJAX script takes in the URL of the HTML page I want to grab content from (this HTML page is on my server so there are no cross-platform security issues) and it pulls in the HTML document as a string of text rather than a XML/DOM document.

I want to be able to grab a DIV element with a specific ID and pull in all the content from that DIV element.

I know that JavaScript libraries have the ability to do this, but I'm not looking to use a library, I want to use my own Js code. For example this can be done using jQuery's load() method but again I'm looking to implement this with *home-grown* Js code and not have reliance on a Js library for this one aspect of my project.

View 3 Replies View Related

Create An Order With The Ability To Dynamically Self Total The Sum Of The Selected Items?

Aug 7, 2011

I am trying to create an order with the ability to dynamically self total the sum of the selected items but also be able to add a 25% labor fee having it be at least $90.So if someone buys $300 worth of items the labor charge would be $75 but it would be automatically bumped to $90.heres the existing code:

* Calculates the payment total with quantites
* @param {Object} prices
*/[code].....

View 1 Replies View Related

Images Works In IE But The Other Functions Don't - Use The Span Tag And Work With The InnerHTML Ability?

Mar 1, 2011

Everything works in firefox but only the card switch function works in IE

[Code]...

View 2 Replies View Related







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