JQuery :: Selector : Find & "Perform"?
Mar 5, 2010
i want to use jQuery to perform 2 action within my articles:
- create links (for a glossary), attributes needed:
href, class, title, target, link text
- highlight terms (for a search function)
first of all, for the highlight-function , i tried:
$("#content_article:contains('Test')").css("text-decoration", "underline"); but then, jQuery underlines ALL content. I just need e.g. "Test " to be underlined (or yellow-backgrounded).for the second, glossary-function .i'm using "tinyTips" for displaying tooltips above an <a> element.so i need jQuery to find e.g. the string "Test" and perform the following with it:
<a href="#" class="tTip" title="'.$glossary['desc'].'" target="_blank">'.$glossary['tag'].'</a>
.. where $glossary['tag']represents "Test" in this case.tinyTip need the "description text in the title attribute.
-> is it possible to access such elements via
???.attr("href").(???)
View 11 Replies
ADVERTISEMENT
Jun 5, 2009
I'm trying to find an example of a country selector (which also provides a state selector if USA is chosen) then you cvan select the city, any samples out there?
View 2 Replies
View Related
Jul 13, 2011
how is search to a selector for find a value by jQuery?
View 3 Replies
View Related
Apr 21, 2010
function GetDepartmentTree() {
$.ajax({
type: "POST",
url: "Service/service.asmx/GetDepartmentTree",
[Code]....
View 2 Replies
View Related
Sep 6, 2011
I've been fiddling around with a bit of javascript in a chrome extension - something to alter the Google buzz webpage.I'm trying to find each individual post basically and have the following:
var entry =$('.X0POSb'); //This main block contains the bulk of Google buzz content
console.log(entry);
var items = entry.find('.G3.G2');
[code]...
View 4 Replies
View Related
Mar 29, 2011
It is possible to perform a find in page search that looks at a specific link, opens the page in a new window and finds the text within that document?? Basically I regularly use an html page in work that has a list of people and their telephone numbers. I want to be able to type in a searchbox on my main page and it open the target page and find the name I am looking for? Is this possible or can you only Find In Page on the same page or another frame?
View 1 Replies
View Related
Sep 8, 2011
Are there any difference between class selector and ID selector
View 2 Replies
View Related
Mar 21, 2010
I am having a hard time implementing a feature on my website. I want an input box to appear when the "sell" tab is clicked, and I cannot figure out how to do it with Jquery. I can't figure out how to chain an action to tabs. here is my code so far
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
[code]...
View 1 Replies
View Related
Jun 18, 2011
I'm sure this is much simpler than I have been making it seem in my head so I'm giving up and asking Basically I have a html document being dynamically created by php. In the markup I create some divs (the number of which changes between pages) all of which belong to the same class (class="div") and have id's of the same format (id="div_90001" or "div_88926773"). What I want to do is perform a function on eachelementin the class and extract the number in the id and then perform a function with the number (AJAX) and then return the results to the div (probably some extra markup)
I can handle all the AJAX parts, the extracting of the id number etc... I just can't make a function that will work on all elements in a class. I fear I am not making much sense, I'll try again cos I don't think I'd understand what's above. I have some divs that belong to a class, I want to perform the same function on each of the elements in the class. How is this done?
View 1 Replies
View Related
Mar 21, 2010
I am having a hard time implementing a feature on my website. I want an input box to appear when the "sell" tab is clicked, and I cannot figure out how to do it with Jquery. I can't figure out how to chain an action to tabs. here is my code so far
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
[Code]....
View 1 Replies
View Related
Jul 10, 2009
I'm loading some content on a page with ajax. After it's loaded I can't seem to perform any more jquery on it. How do you get around this?
View 3 Replies
View Related
May 31, 2011
I'm using jquery file upload - when each file has uploaded, the name of the file appears, and I've added a check button:
<td colspan="2"><span class="ui-icon ui-icon-check"></span></td>
What I'd like to do is make jplayer fire off a "ding" sound as soon as each file is up.
For example (just to test)
$('.ui-icon-check').live('click', function() {
$(this).css("background-color","yellow");
});
needs an action, like a click or a mouseover or something. For each file that arrives, and therefore adds another instance of ui-icon-check, I'd like to fire an event. A weekend of googling has really only turned up Live Query from 2007, which works perfectly with
$('.ui-icon-check').livequery(function(){
$(this).css("background-color","yellow");
});
[Code]....
So am I totally mis-understanding the point of live, or just mis-using it?
I'm doing it this way rather than mess with the uploader code as he's updating the code all the time, and the more I can stay away from code code the better I think.
View 4 Replies
View Related
Jul 29, 2010
as you can tell by the following statements, i'm new to jQueryI'm trying to do the following (in plain english) without too much success.. ) when document ready.. 2) find the element with id 'next'.3) pull / take all 'li' elements, and perform so and so, all whilst excluding 'last' element.
$(document).ready(function() {
$('#next').click(function() {
$('li').each(function() { //for each li ..
[code]....
View 4 Replies
View Related
May 27, 2009
<div>
Is it possible find a node backwards instead of forwards.
I would like to do (remember find_reverse does not exist)
View 7 Replies
View Related
Oct 23, 2010
This is odd. I cannot perform a subtraction. The following code:
Code:
var saturday=new Date();
saturday.setDate(saturday.getDate()+6�saturday.getDay());
Gives me:
Error: illegal character and points to the '-'.
View 4 Replies
View Related
Sep 8, 2009
I would like to perform a regular expression on a string and if TRUE do something.
I have huge amounts of knowledge doing this in PHP but trying out javascript.
View 1 Replies
View Related
May 6, 2010
know there is a similar post on here but it didn't really give me any actual help on this topic:It seems that I have the correct regular expressions in this however it doesn't want to follow my freaking instructions can you guys maybe show me where I'm going wrong and give me a short source code on how to rectify it. Code is below:
function validate(theForm)
{
var falseCounter = 0;
[code]....
View 7 Replies
View Related
Mar 19, 2011
I want to retrieve datas this ms access database using javascript.If I enter 'R' in the search box, I should get all the records starting with 'R'.
View 1 Replies
View Related
Jul 10, 2011
Code:
function randOrd(){ return (Math.round(Math.random())-0.5); }
var cardArray = [
[1, "hundo", "dog"], [2, "kato", "cat"],
[code]...
How come the random function has no effect on the second array it was given to randomize?
View 4 Replies
View Related
Feb 4, 2010
I have this code below:
Code:
$('#admintable').load("/includes/ajax.php?type=gallery&action=order&var=" + $.tableDnD.serialize());
The problem is that throughout my php project it calls different classes and definitions based on what modules are loaded.Is it possible to get it to load a function that is predefined rather than executing a page that will require me to once again declare all my variables and classes so I can perform just a simple db search.
View 4 Replies
View Related
Apr 3, 2009
I have a matrix of radio buttons:
<input type="radio" name="chcalt" id="radio33" value="1">
<input type="radio" name="chcalt" id="radio32" value="2">
<input type="radio" name="chcalt" id="radio31" value="3">
[Code].....
The colum totals would change to: 2, 0, 1 and the total would be 3
I basically need the total of each column and the total overall. The value should be taken from the actual "VALUE".
View 6 Replies
View Related
Jul 19, 2010
I am using the jquery autocomplete pugin fromhttp://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/
I need to perform an action if no data is returned from the autocomplete search but there seems sto be no way to do that. Any ideas pls?
View 1 Replies
View Related
Feb 11, 2011
As this forum has been so helpful before, this time it's a JS question:I have a list of checkboxes from which the user can select 1 or more to check and perform an action upon.Thus, all checkboxes have the same "name" (in ASP code, since it's DB-related):
response.write "<input type=checkbox name=""FieldName"" value="&obj("OrderID").value&">"
I call JS using a button:
<img src="images/TrashBin.png" border=0 onclick="Delete(document.FormName.FieldName)">
[code]....
View 3 Replies
View Related
Sep 28, 2010
My problem is that it takes ages to perform the element.focus() function. This is not a function I have written myself but is part of the Javascript language itself. There are probably a lot of reasons why this might be slow but I cannot find the right one. Let me describe my problem. We have a product which was created around 2004 and has been developed on since. The HTML and Javascript used for the product was based on a prototype which we then converted into a server based solution (we use Servlets/JSP).
Due to the nature of the prototype (and also the graphical layout) the major page consists of one huge HTML page which a lot of hidden DIV tags. These DIV tags are then toggled visible/invisible to make it look like we have a kind of tab functionality. We also do not load all tabs when we load the mail page, instead each tab is loaded into a hidden iframe and then with Javascript we grab the resulting HTML content and paste it into the main page, making that one tab visible while hiding all other tabs.
In one of these tabs we also do some more magic. The layout is as follows; we have sets of three columns each and then a lot of rows. Each set of three columns contains one text field per column. The last text field contains a percentage value and when edited, we check if the value is lower then before the edit and if it is, then we split the column, creating another set of three columns.
When we load the page the first time, there exists only one set of columns with the last column having the value 100. There can however easily be 100 rows as well. For the larger pages we can have (at load time) three columns which makes it 900 text fields. I do not know if this is much or not.So, with the above info, to my problem. First off, when I try to move the marker and click on a given field (so that the marker starts blinking on the selected field) it takes maybe 2-3 second (although not always, seems to be more the first time). If I then tab to the next field it goes very fast (like one would expect).When I try to edit a value (by simply adding or removing values) it again takes a very long time (the first time).
When I then try to tab, it takes ages (this happens always, not only the first time).My Javascript then. I have two events, onchange and onkeydown. onkeydown checks if a variable is set to true or not. If it is set to true, the method does nothing. If set to false it does a bunch of tests and sets the variable to true. onkeydown is what I think causes my first lag but the code is not really that advanced (no loops or anything). onchange does the same checks plus all the magic (with the split etc). One of the last things it does is try to set focus on the next text field and this goes extremely slow all the time.
We use IE8. We (sadly) have a lot of IE specific stuff so the site doesn't even work in Firefox. I have used IE8 Developer Tools and used the Profiler which basically gives a list of Javascript calls and their execution times. My own functions take basically zero time, but there are A LOT of calls to functions that are not named, or anonymous, according to the Profiler.
How do I find what the anonymous function calls are?Why is it the focus() function that takes time, can it (or is it) still some of our own Javascript that makes that function go slow, even though it is part of the Javascript language?Can it be the amount of elements on the page (900 text fields)? Is that much?Can it be IE8? Are there known issues with this?
View 1 Replies
View Related
Oct 10, 2011
In Classic ASP, create a For to enumerate various fields, which perform multiple operations in a JavaScript script, my question is:According to the line that the user selected, run this script
Code:
function pagodir(renglon)
{
[code]....
View 2 Replies
View Related
Nov 30, 2009
I need to perform an Ajax request as someone is typing into a text field. But I don't want to trigger a request on every key press. What I need is to perform the request if a key has not be pressed for x number of milliseconds.I seen an answer here - Time Restraint - but I'm having difficulty applying it to my situation.I'm using jquery and this is a trimmed down version of my current code:
javascript Code:
Original
- javascript Code
I don't know how to change this function to use setTimeout in a way that lets me execute a trigger function on a control relative to the current field. Ideally I need to pass $(this) as a parameter for the function setTimeout calls, but I don't know how to do that when the function call is passed as a string.
View 1 Replies
View Related