JQUERY :: Pass Id Of Anchor To Use In Function?

Jun 24, 2009

I was wondering if someone could help me with this. I want to, when an anchor link is clicked, the id of the link is grabbed by jquery then passed to a function. The id is would be the same as the id of the div that is used for the function (highlight).

[Code]...

The code is a little messy but I am just testing right now. So if someone clicks on #aq1 link the id "aq1" is grabbed and used for the highlightFade function. It would highlight the div with id "aq1".

View 3 Replies


ADVERTISEMENT

Pass Link To Anchor?

Aug 9, 2010

I have a simple a tag in html that when clicked I want to link to a random address picked from an array of possible links.

So in the code here I have an array of the links and I'm picking a random number from the length of that array, I'm then using that number to pick a random link from the array.

Code:
<script type="text/javascript">
var links_arr = ["http://www.link1.com","http://www.link2.com","http://www.link3.com","http://www.link4.com"]

[Code]....

This all works fine and the window.alert show randomly picked links from the array.

The problem is passing the link to the href of the a tag - how can I use the link in the href ?

Code:
<a class="buy" href="javascript:link()" target="_blank">buy</a>

View 4 Replies View Related

JQuery :: Click Function On Anchor Element?

Jun 10, 2009

I'm confused as to why when I have:

$('a').click(function(){
alert(this);
return false;

[code]....

View 4 Replies View Related

JQuery :: Click Function Of Anchor Tag Not Working With Href Other Than #?

Jul 25, 2011

I started with the simplest step - the hide() function:

$(document).ready(function(){
$("a#p").click(function(event){
$("#HiddenDiv").hide();
})
});

It worked fine as long as the href attribute of the anchor tag was '#'. Then I tried using href other than '#' and ran into a problem. I just changed the href to:

<a id="p" href="test.php">Click me</a><br />
<div id="HiddenDiv">Testing mate</div>

test.php is the page in which both these sections (html and jquery) are present, so like a postback to the same page.

This method didn't work and on clicking the anchor tag, the div stayed visible.

I then tried theevent.preventDefault(); method and that worked.

So I experimented more. I tried using the hide function on a dynamic link, something like test.php?a=1.

I ran into a problem again. The div remained visible on clicking that link.

View 17 Replies View Related

JQuery :: Passing Parameter To Click Function From Anchor?

Jun 9, 2010

my first attempt to post seems to either have been rejected or simply gone into the cyber void.

I currently have a link on a webpage as follows:

<a href="#" id="loadData"><img src="images/bookcase.png" alt="" width="114" height="167" border="0"></a>

which is picked up by

$("#loadData").click(function()
which then executes:
.load("subgenre.php" , function() etc

What I want to be able to do, however, is pass a parameter to the php script, along the lines of:

.load("subgenre.php?param=" + passedParam , function() etc

View 3 Replies View Related

JQuery :: Reload Page With Anchor When Anchor Link Is Clicked?

May 26, 2011

I need to get the page to reload with the anchor in the link when it is clicked in a dropdown menu. For example if I am on 'www.domain.com/about/#2' and I then click on 'www.domain.com/about/#3' the url changes but the page doesn't reload so I need the page to reload, but keep the new anchor (#3).I gave the links with anchors a class of 'reload' and tried this:

$('a.reload').click(function() {
window.location.reload();
});

View 4 Replies View Related

JQuery :: Pass ID # To Function In Order To Use One Function Instead Of Separate Ones?

Oct 1, 2010

I am trying to minimize the amount of script that I use on my website. I have sections of each page; each section has the same basic layout. The divs and images that I want to make appear and disappear all have nearly identical ids, the only difference is the number at the end of the id.Is there a way to get one script to automatically detect which id number has been clicked and then show all elements with the same number at the end of the id? I would also like it to hide the elements in the hide function below (basically they are the elements that do not share the same id number).I currently have everything working the way I want it to using multiple functions like the one below but I woul

$("#2thumbNail2 , #ledBar").click(function () {
$("#type201 , #type203 , #type204").hide();
$("#image201 , #image203 , #image204").fadeOut("slow");

[code]....

View 1 Replies View Related

Passing A Function Within An Anchor Tag

Jan 12, 2007

I have a questionregarding passing a function within an anchor element href
during dom scripting using javascript. for eg:

the xslt file contains
<a href="javascript:{@test}('{@value}')">

how will i write this in javascript. Basically the xml file has

test = "help" and no value parameter in this particular xml file currently

the basic idea is to pass help('') in href of anchor tag
the help function is already defined.

i have currently written as:
var help = element.getAttribute('test');
var value = element.getAttribute('value');
elementA.href = 'javascript:help + '(' + value + ')'

value should be equal to ' ' where as in my case it is returning null and not sure on the syntax that i am using for href.

View 1 Replies View Related

Create Anchor Tag Using Function?

Mar 17, 2011

I want to create one menu with anchor tag for e.g=> <a href="http://www.example.com/example.php" rel="facebox">Example</a>

I want to write javascript function for that like

$menu = array();
$menu['page name without extension'] = 'Page Title To be showed on page';
function MenuGen()
{
}

In addition I want to add FACEBOX from [URL] or [URL]

View 1 Replies View Related

JQuery :: Pass An ID To The Function?

Jul 28, 2010

I have a list of items and a link to delete one at time. I've build this confirmation delete script but it works in a wrong way: it takes the last item.

<html>
<head>
<link rel="stylesheet" type="text/css" href="css/redmond/jquery-ui-1.8.2.custom.css">

[code]....

View 4 Replies View Related

JQuery :: Pass Different IDs To Function?

Aug 18, 2009

I'm very new at jQuery, and I've gotten myself stuck.I have a set of menu tabs which should show/hide divs on the page, and the active tab should change style.[code]

View 4 Replies View Related

Anchor Specific OnLoad Run Function?

Aug 18, 2010

But I was wondering is it possible to make it so that if you visited an anchor link: For example, let's say you visit:

Code:

[URL]

Then a code would run to let's just say... change the color scheme of the website. (And theoretically they same would happen with #v2/#v3, ect)

But the code would NOT run if the requested URL is just

Code:

[URL]

The reason I was wondering is I want the user to be able to "bookmark" a certain script per-say, so that when they revisit the site they don't have to reclick things to get back to where they were before.

View 7 Replies View Related

JQuery :: Pass A Variable To Function?

Apr 19, 2011

I am creating a testimonial/quote rotator using the following function:

[Code]...

View 2 Replies View Related

JQuery :: Pass A Dynamic DIV ID To A Function?

Apr 27, 2010

I got a problem with passing dynamic DIV ID. I was doing some a php page which retrieved data from database and put into according DIV tag like this:

<DIV id="variabl1">msg1</td>;
Since there were tens of records in the table in database, the result would become:
<DIV id="variabl1">msg1</td>;
<DIV id="variabl2">msg2</td>;
<DIV id="variabl100">msg100</td>;

I got a JQuery script to show a specific message when a user moved his mouse over a DIV,
say if he moved his mouse over DIV ID 1, a msg would pop up showing message.

[Code]...

View 1 Replies View Related

JQuery :: POssible To Pass ID As A Parameter For A Function?

Mar 23, 2011

I've been struggling with a piece of code. I'm guessing the solution is quite simple, but I just can't find it! [code]...

The line that I commented out was an attempt at getting a variable that had the value of the image-id, but it doesn't work.

View 4 Replies View Related

JQuery :: Pass A Selector Into A Function?

Apr 5, 2010

I am attempting to hack a jQuery extension that does an ajax style form submit. The final result is an image uploader that can run inline. The script is fairly simple - it creates an iframe with a new form, and copies over a form element (the file name), and submits the form. Plus error handling and the like.

The problem is that I need to use from within MVC, and so I need more form values, like the ID of the item I am working on. It would be easy to add another configuration setting for an additional form element to copy over, but I really want to have the ability to pass a jQuery selector in and use that to specify the form elements to copy. Is this possible?

View 3 Replies View Related

JQuery :: Call A JS Function By Pass Into A JS?

Jun 19, 2009

i want pass a JS function name into a function and call it.

<a onclick="javascript:ajax_loadpage('inittabFeeds()');">babababa</a>
function ajax_loadpage(x_func)
{
// how can i call inittabFeeds() which stored in x_func variable ?
}

View 4 Replies View Related

JQuery :: Pass Object To Function?

Jan 6, 2010

I have a function which controls my interface. If people click on alink with the class 'less' i would like a dive to slide up.My code roughly looks like this:

$
"a.less"
.livequery

[code]....

View 6 Replies View Related

JQuery :: Pass A DIV ID To A Self-defined Function?

Apr 27, 2010

I am writing a simple html in which when the user moves his mouse over a particular DIV, a message box will pop up.

Part of the code is as follows:

<DIV id="1">Hide them</DIV>
<p>Hiya</p>
<p>Such interesting text, eh?</p>
</td></tr></table>

[Code]....

I dont know how to pass a DIV's ID to a self-defined function in JQuery.

View 2 Replies View Related

JQuery :: Pass Id To Delete Function

Oct 16, 2011

How do I pass the ID of the selected row to the delete function, "function Delete(ID)",when the user clicks on the Delete link below? [code]

View 13 Replies View Related

Jquery :: Pass Value To Click Function?

Jun 30, 2010

I would like to pass value to click function in JQuery. How to do that ?

I want to send the ID value of the HTML element to the click function when the element is clicked.

whats the syntax ?

View 1 Replies View Related

Call Function In Script And Pass One Parameter To Function And Its Returns String Value?

Feb 15, 2012

I want to call java function in javascript.In which we pass one parameter to function and its returns String value which I want to display in alert message.

View 2 Replies View Related

OnClick="function Value Of The Anchor Tag Just Clicked?

Oct 23, 2010

onClick="function(' whats the value of the anchor tag just clicked? Title basically says it. I need to get the object that was just clicked, to insert into a JavaScript function. I've tried "function('this')" and similar things, but it doesn't work. I'm sure this is REALLY easy to do, but I don't know it and I have no idea what to search for.

View 1 Replies View Related

JQuery :: Pass More Than 1 Parameter To Click Function?

Jun 10, 2010

I currently have the following:

<a href="#" id='$dbase'>Link</a>

which passes the value of $dbase to my jQuery click function.

But I'd like to also pass a second parameter consisting of a page number. Can that be done using the click function or would I have to do it another way. I'm assuming it must be possible. I suppose i could always concatenate the two parameters, e.g. $dbase-$pagenum, pass that and then split it in the javascript but that seems a slightly inelegant way of doing it.

View 2 Replies View Related

JQuery :: Can't Pass Function As A Parameter And Call It

Aug 2, 2011

I'm trying to pass locally defined function as aparameter. Every time I do it, it causes an error saying something along the lines of "there is no conversion for text to function".

$(document).ready(function(){
jQuery("#confirm-ajax-submit").click(function(event){
var success = function(){
alert("this is what I want to see.");

[Code].....

View 5 Replies View Related

JQuery :: Execute/Run A Function After 1.8 Seconds Pass?

Feb 8, 2011

I was wondering if someone can help me write some jQuery that would be executed after 1.8 seconds pass. Well what I want to be executed is all div tags to be shown. As$(document).ready(function() {
("div").show();});would show all div tags when the document is loaded.Is there a way I could do something like what I have written inpseudo-code$(document).wait("1800", function() { ("div").show();});

View 1 Replies View Related







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