I'm trying to use the jQuery $.inArray function to iterate through an array and if there's an element whose text contains a particular keyword, remove that element. $.inArray is only returning the array index though if the element's text is equal to the keyword.
For example given the following array named 'tokens':
- tokens {...} ...
I've been struggling with a feature I've been trying to create for sometime.
The idea here is that the user sees the little thumbnail + headline, as well as the Posted By information. They can then click on the headline to expand to the article or click on the "Comments" link to expand directly to the comments made on the article. Or, if...
Currently we're using javascript new RegExp('#[^,#=!\s][^,#=!\s]*') (see [1])
and it mostly works, except that it also matches URLs with anchors like http://this.is/no#hashtag and also we'd rather avoid matching foo#bar
Some attempts have been made with look-ahead but it doesn't seem to work, or that I just don't get it.
With the belo...
Hi. I'm seeing in another forum if the best way to do this is with Javascript or Ajax but I'm wondering if there is an even easier simpler way. I'm trying to create a web service where users can check which countries they have visited from a list of 175 or so and a World map image would then instantly update with a filled color.
There a...
I am using the following regex:
(public|private +)?function +([a-zA-Z_$][0-9a-zA-Z_$]*) *\\(([0-9a-zA-Z_$, ]*)\\) *{(.*)}
To match the following string:
public function messenger(text){
sendMsg(text);
}
private function sendMsg(text){
alert(text);
}
(There is no line breaks in the string, they are converted to whitespaces before th...
Hi,
I have two forms, one with a radio button that users must select to edit.
[form name="A"]
[input type="radio" name="BookItem" value="1" /]
[input type="radio" name="BookItem" value="2" /]
[input type="radio" name="BookItem" value="3" /]
[form]
After "BookItem" is selected from form (A) I call the $("#EditFormWrapper").load("callEdi...
Hello
i have 2 divs above each others, at a given moment one is shown and the other is hidden, the script should display #div2 when the mouse enters #div1 and should show #div1 when the mouse leaves #div2
the problem comes when the mouse enters #div1 and leaves before #div2 is displayed so the #div2 will stay displayed but the mouse has ...
I might just be using the wrong keywords on Google, but what I have in mind is:
--------------------------------
| What is your mailbox? |
| |
| [ ]@mail.example.org |
| |
| [OK] [Cancel] |
--------------------------------
The idea bein...
what tools do you use for writing jquery code and testing/debugging your code?
...
$("#post").live("click",function()
{
$("input:checkbox[name='bookmarkid']:checked").each(function()
{
$.post("php/socialbookmark-post.php", {bookmarkID: $(this).val()},function(data)
{
if(data != "") alert(data);
});
});
});
the php file outputs some text only if something goes wrong...
http://chart.apis.google.com/chart?cht=lc&chs=600x400&chd=t:171,811,629,507,460,390,434,379,329,312,368,329,329,329,352,330,299,323,340,325,329,1895,1047,736,617,684,620,515
If you go there on your browser, you'll notice that you see a graph. However, the axis are messed up! And it seems like I can't see the ups and downs of my...
I am trying to get jquery validate to work on multiple fields. Reason being I have dynamically generated fields added and they are simply a list of phone numbers from none to as many as required. A button adds another number.
So I thought I'd put together a basic example and followed the concept from the accepted answer in the follo...
Is there some valid purpose to minifying before compressing? It seems highly unlikely that the gzipped file is smaller if it's minified first.
I ask because diagnosing production problems in minified code is substantially more difficult, and I'm wondering if people are subjecting themselves to that for no purpose.
...
I have an iframe. I am setting the content of the iframe (different domain - like www.google.com) through a form submission.Currently it's scrolling attribute is set to 'no'.
<iframe name="testFrame" id="testFrame" frameborder="1" scrolling="no" width="500" height="200"></iframe>
<form name="testForm" id="testForm" action="http://www.go...
I have a XUL window, and I want the cntrl+w hotkey to close the window, but when I attach:
window.addEventListener("keypress", function(ev) {
GM_log("onkeypress handler: \n"
+ "keyCode property: " + ev.keyCode + "\n"
+ "which property: " + ev.which + "\n"
+ "charCode property: " + ev.charCode + "\n"
+ "Character Key Pressed: "...
I want to have site wide default settings for all jQuery validation uses on my site, I want every form to use the below settings, but then on a per form basis change the rules and messages. Is this possible?
$('#myForm').validate({
errorClass: 'field-validation-error',
errorElement: 'span',
errorPlacement: function(error, elemen...
As you'll no-doubt be able to tell momentarily, I have little knowledge of the programming world. That being said, here goes....
In this scenario, there's a Java-based game that has a map of the game world oriented in an X, Y coordinate tile system. Some of the grid tiles are player cities, some are non-player locations.
The game runs...
I need to create textbox dynamically when user click a link.And also i need to remove that textbox according to user decission.I am trying the following script.
<script language="JavaScript" type="text/javascript">
var Dom = {
get: function(el) {
if (typeof el === 'string') {
return document.getElementById(el);
} els...
Hi guys this is a followup from the question:
http://stackoverflow.com/questions/2583928/prefilling-gmail-compose-screen-with-html-text
Where I was building a google apps application - I can call a gmail compose message page from my application using the url:
https://mail.google.com/a/domain/?view=cm&fs=1&tf=1&source=mailt...
Hello,
I visited this site and i really liked the code colorer used by it (apart from that CSS3 article on speech bubbles).
I went through the source code of that page but could not find which syntax highlighter is being used there.
Does any one have an idea?
...