Keyword - Modify The Src Attribute ?

Feb 12, 2011

I'm trying to get the following function to work:

When called like so:

I could just give each image an ID and not use the 'this' keyword, but I haven't used it much so I'm curious about it. It's sending the image element to the function, so why can't I modify the src attribute with that information?

View 7 Replies


ADVERTISEMENT

JQuery :: Modify An Attribute Contained Within A String?

Mar 21, 2010

I'm receiving html into a variable from an external source and I'm trying to modify the id of one of the inputs within the html but when I change it, the original html isn't getting updated. an example of what I'm trying to do is :

var sTemp = "<div><input type='hidden' name='test' id='test' /></div>";
$("#test", sTemp).attr("id","newid");
after changing the attribute, sTemp still contains the original code

View 1 Replies View Related

Add/modify Or Remove Attribute From A Json String?

Sep 7, 2009

how to add,modify or remove attribute from a json string?

View 2 Replies View Related

CSS Inline - Modify Display To Block In Style Attribute

Jun 8, 2010

I have following HTML code:
<br/>
<div style="display:none">.....</div>
<div style="display:none">.....</div>
How can I modify display to block in style attribute with Javascript?

View 1 Replies View Related

JQuery :: Setting 'class' Attribute In Bulk Attribute Syntax Without Quotes Breaks IE/Opera?

Jan 20, 2010

i have found a possible bug in 1.4 but it's only in Internet Explorer 7 & 8.The following code does not work and completely ruins every peice of jquery on the page (that means everything inside $(document).ready and anyting else...

$("<div/>",{
id: 'tooltip-'+rand,
class: 'dock-tooltip',

[code]....

I cant see any syntax errors - i pulled the example from the 1.4 site. There is no trailing commas in the object notation and i really cant see any reason it would work in firefox and not IEx and more to the point not only not work in IEx but break any other jquery in the entire page....

View 5 Replies View Related

Settimeout And This Keyword

Apr 3, 2007

I am modifying the suckerfish dropdown code to use settimeout to have
a slight pause before the menus disappear to make it more user
friendly. I have hit a snag with the following statement:

li.
{
timerID=setTimeout('this.getElementsByTagName("UL")
[0].style.display = "none"', timecount);
}

If I put take the statement

this.getElementsByTagName("UL")[0].style.display = "none";

out of the settimeout function, it works. (w/o the pause, obviously).
With the settimeout function, I get "this.getElementByTagName is not a
function" error.

I have tried putting this.getElementsByTagName("UL")[0] is a variable
and then using that in the settimeout function, but then each li will
only open the very last menu in the list. (ie all the menu items open
the last sub menu) Code:

View 4 Replies View Related

Searching For A Keyword?

Aug 19, 2009

I've been searching google endlessly and I've come to the conclusion I'm not using the proper search keywords. I'm trying to create something similar to the banner/button combo you can find here:[URL]..

I assume these type of slide show buttons combos use java script and possibly php. If anyone knows the proper name for this type of slide show or can point me to some scripting

View 2 Replies View Related

JQuery :: Css Attribute Selectors No Longer Work With The '$' In The Attribute Value As Of 1.5+

Mar 4, 2011

I'm working with a large (and unweildy) ASP.NET application, and there is a lot of jQuery code that uses selectors like this:

[name=_aspnetControl$_withASubControl] And unfortunately, some selectors that also look like this:

[name^=_someAspNetControl$_radioButtonList].

In other words, the effort to remove the $ from the attribute selectors would be monumental. If it is possible to escape the $ symbols, I can do that easily enough, but unfortunately the situation right now means that I can't upgrade to jQuery 1.5.

View 2 Replies View Related

JQuery :: Finding The Value Of Attribute B In Elements Named Bar Where Attribute A Has The Value 30

Sep 1, 2010

I'm learning jQuery with XML. I'm familiar with other query languages such as XPath. I'm having a little bit of difficulty wrapping my brain around how jQuery works but I think I can make the leap if I see a solution to a problem I know how to solve with other methods Given the following XML, please share a jQuery solution to finding the value of attribute B in elements named bar where attribute A has the value 30:

[Code]...

View 1 Replies View Related

Grab The 'this' Keyword Position

Sep 8, 2006

Is there a way to find which element in an object array the keyword 'this'
is acting upon?

For example:

function doMe(){
var aTags = document.getElementById("list").getElementsByTagName("a");
for (var i=0; i<aTags.length; i++) {
aTags[i].onclick=function() {
this.className = "myClass";
}
}
}

Inside of this function is there a way to determine where in the array this
'this' is and return the integer?

var theID = this.somethingOrOtherThatWouldGiveMeTheNumber;
var elementID = document.getElementById("myDiv"+theID);

View 4 Replies View Related

JQuery :: Use Of This Keyword With And Without String

Aug 29, 2011

I was reading thegetting started with jquery. And got confused with use of this in these 2 code segments.
$(document).ready(function() {
$("#orderedlist").find("li").each(function(i) {
$(this).append( " BAM! " + i );
});
});

$(document).ready(function() {
// use this to reset several forms at once
$("#reset").click(function() {
$("form").each(function() {
this.reset();
});
});
When do we need $(this) and this? And what is the difference between them?

View 1 Replies View Related

Use Script To Grab Keyword?

May 28, 2009

Would like to check if there is anyway where i can use javascript to grab the keyword of .doc and .pdf file.

because when i right-click on the files, and click on properties. there will be a tab at the top (Summary for .doc and PDF for .pdf), and upon clickin there will the description, author and keywords. so im just wondering if there is any way to grab the value?

View 2 Replies View Related

Keyword In Callback Within Object.

Apr 27, 2007

I'm creating a list with buttons that show and hide some of the list elements to create the effect of scrolling. I've built an scrollList object so I can apply this to any list. When you create the object and pass it the id of the <ul> and how many items of the list you want to be displayed. It will add the scroll down and scroll up links and add an Event.observe to them (I'm using the Prototype library).

This code creates the object

var main_news_articles;
main_news_articles = new scrollList('main_news_articles', 5);
main_news_articles.init();

The problem I am having is with the callback functions of the onclick event of the links (scrollUp and scrollDown). The this keyword within these functions is refering to the link and not the object.

To try and solve this I've made the title attribute of the link the same as the variable name of the scrollList object. I can reference the scrollList object like so Code:

View 2 Replies View Related

JQuery :: Add Css Id To Li Link Dependant Upon Keyword In Url?

Sep 19, 2009

I've just started learning jquery and have been trying to use this code which I found on this forum.I want to detect some text (addClients) in the url and add an css id to a list item with the class m1 (li class="m1") - so I get (li class="m1" id="expanded"):

This is what I have so far (which is not working)$(function() {
$(document).ready(function() {
var url = location.pathname;

[code].....

View 3 Replies View Related

JQuery :: Detect Keyword And Add Class?

May 30, 2010

I want detect if the column has red or blue, add the class on it, it's like

[Code]...

but I want every column 2 below red column and column 3 below blue also add the same css, how to do it?

View 1 Replies View Related

Retrieving Keyword In Alert Box To Welcome Visitor

Aug 13, 2010

I am looking to insert a keyword in to a javascript alert box when someone visits my website, so say they came from codingforums, it would say "Welcome, CodingForums.com Visitor". My keyword will be passed from the ad platform I am working with and shows up correctly in the tracking, so I'd imagine it's just a case of having the snippet of code for it to show in the alert, correct? If there is no keyword, I would just like it to say "Welcome Visitor" or something.

View 11 Replies View Related

Passing Values With This Keyword Using SetTimeout

Jun 14, 2010

This following script changes style when mousing over a paragraph:
Code:
<html>
<head>
<script type="text/javascript">

[code]...

View 8 Replies View Related

How Do I Take <%=Keyword%> In Javascript And Break It Down To Arrays?

Jan 20, 2006

How do I take <%=Keyword%> in Javascript and break it down to arrays?

View 5 Replies View Related

Using New Keyword With Variable Length Arguments?

Dec 22, 2009

I want to use the new keyword to instantiate an object. The catch is I want to pass in variable length arguments.
Given:
function Foo () {
this.args = Array.prototype.join.call (arguments);
}var args = ["arg0", "arg1", "arg2"];

The following don't work (though I understand why):
new Foo.apply (null, args);
new (Foo.apply (null, args));
(new Foo).apply (null, args);
How to do what I want without modifying Foo's source code?

View 6 Replies View Related

Missing Name After Operator Delete Keyword

Nov 13, 2010

this.delete = function(obj){
..
Is that it ? I can't have delete ? Or can this be written in some other way, including delete ?

View 4 Replies View Related

Difference Between Empty Attribute And Undefined Attribute

Apr 24, 2007

I'll trying to tell the difference between the following three cases:

<img alt="text string" />
<img alt="" />
<img />

I can do this in Firefox with the following code, where elem is the
HTMLElement representing each image, but IE doesn't seem to
differentiate between empty string and undefined.

var alt = elem.getAttribute('alt');
alt = (alt) ? alt : ((alt===null) ? 'really_null' : "");

The desired output from running this code on the 3 tags above is:

text string

really_null

It seems like this should be really easy...but I'm having a really
difficult time trying to figure out what's going on...

View 4 Replies View Related

JQuery :: .click() Event Handler And The 'this' Keyword?

Nov 13, 2011

My plan is to create a JavaScript class, with some functions and variables, and one of the functions is called when a user clicks on a certain element. However, I need to find out the ID of the element that was clicked (in the example, that of the <p>) for further processing. It looks basically like the following:

[Code]...

The result was very crazy, because console.log(this) gave me the node as result, and console.log($(this)) did the same only as jQuery node, but trying to find out the attribute via jQuery gave undefined as result. I haven't checked if this.id would work (should probably), but I'd prefer to keep the whole script in jQuery, if possible. I suspect it may be an overusage of the 'this' keyword, but if so, what's the proper way to do it?

View 1 Replies View Related

Changing Properties Added With The Prototype Keyword

May 2, 2007

I have some script like this:

// simplified to remove all the try/catches & stuff
function newXHR() {
request = new XMLHttpRequest();
XMLHttpRequest.prototype.requested = null;
return request;
}

then later:

function doRequest(url, callback) {
var req = newXHR();
req.requested = url;

// et cetera....
}

This works fine in Firefox, however the line 'req.requested = url' causes an error in IE7, (I haven't tested IE6 yet). The error is 'Object doesn't support this property or method'

So, this leads me to believe that either a) XMLHttpRequest.requested is not writable, or, b) XMLHttpRequest.requested was never created in the first place. I think it's the first option because I'm not getting an error in the newXHR() function.

I've been searching for some documentation on this but I can't seem to find anywhere if properties created with the prototype keyword are writeable in IE. Does anyone know what the problem is?

View 1 Replies View Related

Handle Objects And The 'this' Keyword When Using Event Listeners?

Feb 24, 2009

So I know all about the caviats of the 'this' keyword when calling object functions from event listeners:

Code:
var foo = {bar: true, zoo: function() { return this.bar; }};
foo.zoo();
> true
a = foo.zoo;
a();
>

And I know that I can get around this by using an anonymous function so that 'this' is preserved in it's original context:

[Code]...

But then someone pointed out this article on memory leaks when using anonymous functions to call object methods because the anonymous function gets access to ALL variables in the enclosing environment and my not be properly disposed of by the garbage collector [URL] So that lead me to think about using a "3rd-person" approach to referencing object properties from within object methods.

[Code]...

View 2 Replies View Related

Grab The Keyword Phrase That Someone Used To Enter The Website

Dec 21, 2010

How can I grab the keyword phrase that someone used to enter the website and then pass that through a form? I would need to know for search engines and Google AdWords as well. Does anyone know how to do this?

View 5 Replies View Related

Keyword SEARCH Function With REPLACE(RegExp)

Jun 10, 2009

is it possible to combine the the following functions with each other in an array for example and if so, would someone be kind enough to show me how. the reasons are 1. to see if it is at all possible and 2. to learn so that I can combine further possibilities in the future. the first script compares user keywords from search mashines and the second replaces certain strings/paterns with others.

[Code]...

View 9 Replies View Related







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