How To Filter A Page Using Javascript ?

Jul 20, 2005

Let's say I want to filter the contents of a target web page, and
present a simpler page on the screen.

For example, let's say a target web page is full of links, text, images,
forms, etc. and I want to present a simple page containing just the links.

The original page is not "mine", that is, I can't just edit it in
notepad and stick some javascript in it.

So, what I want to do is write some javascript on a new page that I'm
developing, that will somehow "access" or "read" the target page, scan
and find all the links, and present them to the user.

My question is, what's a straightforward way from javascript to access
the target page ?

Should I be somehow loading it into a DOM object and then "walking" the
tree ?

Or should I somehow read it's HTML as text strings and parse it looking
for anchor links ?

What functions, methods, classes, objects in javascript achieve the goal
of something accessing a remote page and "looking" at its contents.

View 11 Replies


ADVERTISEMENT

Filter Out Words With Javascript

Apr 24, 2007

On my comments system, i have things like...

if ( document.news.name.value == "" )
{
alert ( "Please Enter a Name!" );
valid = false;
}

Thats if they havent enterd a name. But i need to filter our words, so i need something like...

if ( document.news.name.value (--contains "rude words here"--)
{
alert ( "You cant post rude words" );
valid = false;
}

How can i do this?

View 10 Replies View Related

Filter Search Results Without Reloading Page?

Apr 27, 2011

how to do the following, here is a simplified example:

Let's say I have a database of pictures of animals. A search for "pets" is performed and it loads a page of thumbnail images. Somewhere on the page is a list of other search criteria (text link or checkbox) that would narrow the initial returned results. An example would be "cats", "dogs", "hamster", etc.

Is there a way after the initial search is performed that the results could be further filtered without having to hit a submit button and reload the page?

View 3 Replies View Related

Jquery :: Checkbox Filter - Page That Lists Products

Oct 24, 2011

I have a page that lists products. i then have a list of categories with a checkbox next to each one. i want to be able to refine the products list based on the categories checked. but i want to not have to use a submit button on the form and not have to refresh the page. i know i need jquery to do this. not sure how though.

example code:

PHP Code:

So if Red is checked than it should the on the page Product 1, Product 2, and Product 4

View 5 Replies View Related

Email Filter To Redirect To Email Provider Page?

Nov 11, 2011

I'm a mediocre website designer i know html , at JS i'm to noob to actualy make something of my own :) just Edit, i'm still learning and atm i'm working on a web project and I'm struggling to find a way to Filter email addresses to redirect my New Members to their e-mail provider, for example if they would register newmmember@hotmail.com to be forwarded to www.hotmail.com so they would login and activate their account, or if they enter @yahoo.com to be forwarded there . Can you please point out a few things i'm eager to learn how to Forward User to email provider after he creates his account . Or how can i forward email to URL inside my webpage , this could help me with another ideea i have, again this would have to be filtered @yahoo.com , @hotmail.com etc , to be forwarded to a local URL inside the site depending on what Email Provider they enter .

View 5 Replies View Related

Javascript To Make A Page Your Home Page

Feb 14, 2006

When someone comes to my site I would like to check to see if their
homepage is set to my site. If it is then nothing is done. If it is
not then I'd like a link to appear that asks if they'd like to set
their home page to my site.

Can this be done? If so can someone post the code to do it?

View 5 Replies View Related

Javascript Popup Page On Page Load

Sep 8, 2007

I am trying to do a popup window, which will load when the page loads. Using the onLoad in the <Body> tag. However it doesn't seem to be working. Also when the popup loads there will be a form which the user selects an option and the form is sent to a email address with the answer chosen and then the popup closed. Code:

View 7 Replies View Related

IE Filter

Jun 12, 2002

does anyone know of any IE filters that can colorize an image. for example, i have a regular image border around a photo (a frame) and i want to be able to show what that photo will look like with different color frame borders.

i want to be able to add a filter to the images that make up the frame so that i can colorize it in different colors through javascript.

this beats creating 200 different frame images, each representing a different color. thats a lot of management that i dont want to deal with.

the closest i came was this:
filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=0, xray=0, mirror=0, invert=0, opacity=1, rotation=0)

View 5 Replies View Related

Word Filter

Aug 9, 2002

This JavaScript is a "Word Filter". It is a type of form validator. When the user submits some text, the validator will check the text for words that has to be filtered.

The words that have to be filtered must be added to the array swear_words_arr. When the user types the text and hits the submit button, if the text contains any word that is present in the array swear_words_arr, the form will not be submitted.

The script can be used for validation of swear words etc.


<html>
<head>
<title>Word Filter</title>

<!--BEGIN WORD FILTER JAVASCRIPT-->
<script language="JavaScript1.2">

// Word Filter
// (c) 2002 Premshree Pillai
// http://www.qiksearch.com
// http://javascript.qik.cjb.net

var swear_words_arr=new Array("bloody","war","terror");
var swear_alert_arr=new Array;
var swear_alert_count=0;

function reset_alert_count()
{
swear_alert_count=0;
}

function validate_user_text()
{
reset_alert_count();
var compare_text=document.form1.user_text.value;
for(var i=0; i<swear_words_arr.length; i++)
{
for(var j=0; j<(compare_text.length); j++)
{
if(swear_words_arr[i]==compare_text.substring(j,(j+swear_words_arr[i].length)).toLowerCase())
{
swear_alert_arr[swear_alert_count]=compare_text.substring(j,(j+swear_words_arr[i].length));
swear_alert_count++;
}
}
}
var alert_text="";
for(var k=1; k<=swear_alert_count; k++)
{
alert_text+="
" + "(" + k + ") " + swear_alert_arr[k-1];
}
if(swear_alert_count>0)
{
alert("The form cannot be submitted.
The following illegal words were found:
_______________________________
" + alert_text + "
_______________________________");
document.form1.user_text.select();
}
else
{
document.form1.submit();
}
}

function select_area()
{
document.form1.user_text.select();
}

window.onload=reset_alert_count;

</script>
<!--BEGIN WORD FILTER JAVASCRIPT-->

</head>
<body bgcolor="#FFFFFF">

<!--BEGIN FORM-->
<table cellpadding="10" style="border:2 solid #FF9900" width="200" align="center"><tr><td>
<form name="form1" method="post" action="post.cgi">
<center><font face="Times New Roman" size="6pt" color="#606060"><b><i>Word Filter</i></b></font></center>
<table><tr><td></td></tr></table>
<textarea rows="3" cols="40" name="user_text" style="border:2 solid #808080; font-family:verdana,arial,helvetica; font-weight:normal; font-size:10pt" onclick="select_area()">Enter your text here...</textarea>
<table><tr><td></td></tr></table>
<center><input type="button" style="background:#EFEFEF; border:2 solid #808080; width:100%; cursor:pointer" value="Submit" onclick="validate_user_text();"></center>
</form>
</td></tr></table>
<!--END FORM-->

</body>
</html>

View 1 Replies View Related

Word Filter II

Sep 29, 2002

Filter out words from multiple fields:

<html>
<head>
<title>Word Filter</title>
<!--BEGIN WORD FILTER JAVASCRIPT-->
<script language="JavaScript">
// Word Filter 2.0
// By Premshree Pillai
// http://www.qiksearch.com

var swear_words_arr=new Array("bloody","war","terror");
var swear_alert_arr=new Array();
var swear_alert_count=0;

function reset_alert_count()
{
swear_alert_count=0;
}

function wordFilter(form,fields)
{
reset_alert_count();
var compare_text;
var fieldErrArr=new Array();
var fieldErrIndex=0;
for(var i=0; i<fields.length; i++)
{
eval('compare_text=document.' + form + '.' + fields[i] + '.value;');
for(var j=0; j<swear_words_arr.length; j++)
{
for(var k=0; k<(compare_text.length); k++)
{
if(swear_words_arr[j]==compare_text.substring(k,(k+swear_words_arr[j].length)).toLowerCase())
{
swear_alert_arr[swear_alert_count]=compare_text.substring(k,(k+swear_words_arr[j].length));
swear_alert_count++;
fieldErrArr[fieldErrIndex]=i;
fieldErrIndex++;
}
}
}
}
var alert_text="";
for(var k=1; k<=swear_alert_count; k++)
{
alert_text+="
" + "(" + k + ") " + swear_alert_arr[k-1];
eval('compare_text=document.' + form + '.' + fields[fieldErrArr[0]] + '.select();');
}
if(swear_alert_count>0)
{
alert("The form cannot be submitted.
The following illegal words were found:
_______________________________
" + alert_text + "
_______________________________");
return false;
}
else
{
return true;
}
}
</script>
<!--END WORD FILTER JAVASCRIPT-->
</head>
<body bgcolor="#FFFFFF">

<!--BEGIN FORM-->
<font face="verdana,arial,helvetica" size="-1">
<form name="form1" method="get" action="" onSubmit="return wordFilter('form1',['name','email','subject','message']);">
<table>
<tr><td>Name :</td><td><input type="text" name="name"></td></tr>
<tr><td>E-mail :</td><td><input type="text" name="email"></td></tr>
<tr><td>Subject :</td><td><input type="text" name="subject"></td></tr>
<tr><td>Message</td><td><textarea name="message" rows="5" cols="30"></textarea></td></tr>
</table>
<input type="submit" value="Submit Form">
</font>
</form>
<!--END FORM-->

</body>
</html>

View 3 Replies View Related

Table Filter

Nov 21, 2005

I found this script for filtering data in HTML tables that is simple and works in all modern browsers. However, I don't know how to modify the script so that it would search for multiple separate keywords.

View 8 Replies View Related

IE-only Filter: Target IE 5.5.x --> 6.x/PC? Best Way?

Apr 7, 2007

What would be the best way to test for IE only, and IE less than 7 (without conditional comments)?

I want to apply alphaImageLoader via a JS function, but I am not sure of best way to only target IE 5.5 --> 6/PC.

Any tips?

View 9 Replies View Related

Tracking Filter Status

Jul 20, 2005

How can i read the light filter properties?

I have a divide with id="pic". I have assigned a light filter -
pic.style.filter='light()'

I have assigned an ambient and two cones to the filter and made an interface
to change the parameters. I now need to read the status of the filter in
order to save the states. I have tried pic.filters.item(0).ambient.color -
pic.filters.light.anbient.color and some other variations but nothing
returns a value.

View 2 Replies View Related

JQuery :: Filter Some Html Tag In DOM

Jun 14, 2009

I would like to copy/clone the html DOM from "id1" to variable "tblContent",and remove the tag "<script>" and "<a>" from variable "tblContent", then append the html DOM to "id2" but not working...any error of my code? [code]

View 1 Replies View Related

JQuery :: Filter Content With It?

May 11, 2010

Is there any way to filter content by multiple parameter using jQuery

Something like in this site [url]but in my case I need to filter content using 3 different parameters. Price, Size and Location.

View 5 Replies View Related

JQuery :: Filter The Div Without Class Abc?

Aug 3, 2009

if I have 3 div, how to filter the div without class abc?

<div></div>
<div class="abc"></div>
<div></div>

View 5 Replies View Related

JQuery :: Filter Any Tag With LI Parent

Mar 12, 2011

I would to achieve the same result of the below function without using callbacks .
The function is:
$("#user-options-menu").find('a').each(function() {
// now I want to filter any <a> tag with <li> parent
if (!($(this).parent().is('li'))) {
$(this).button();
}});
I've tried with$("#user-options-menu").find('a:not(li:parent)') but without result.

View 2 Replies View Related

Multi-filter Drop Down?

Sep 7, 2010

I wanted to put data in dropdown..but capacity of data is arround 6000 to 8000,is their any method like multi-filter drop down?how to do it?

View 2 Replies View Related

How To Filter The Visibility Of Items

Sep 6, 2011

I am trying to achieve an effect similar to this: Our Recent Work | StudeoYou'll notice that if you click on any of the 'filters', the items below are sorted shown/hidden accordingly.

View 4 Replies View Related

Style.filter Works In IE But Not In FF?

Feb 9, 2011

I found this script for free online that does a really basic fade in/fade out slide show. The problem is, it doesn't fade in Firefox! It looks beautiful in IE though (it seems like it's usually the other way around). I've posted the code below, how can I do the same exact thing cross-browser?

// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 5500;
// Duration of crossfade (seconds)
var crossFadeDuration = 3;

[code]...

View 5 Replies View Related

Style.filter Percentage To Hex?

May 27, 2011

I'm working with a style.filter related function.Some of my function appear as ...

Code:

document.getElementById('audio').style.filter = 'progid:DXImageTransform.Microsoft.gradient(startColorstr=#A8' + c.substring(1) + ',endColorstr=#A8' + c.substring(1) + ')';

Everything is working but I'm trying to replace the "A8" part with a percentage typed in by the viewer.The percentage is simply a non-decimal number between 0 and 100 typed into a box.I know how to grab the value of the box (again, it's 0-100) but how do I convert that number into it's "A8" equivalent?

View 3 Replies View Related

JQuery :: Filter If A String Contains A Word?

Aug 16, 2009

i use this code, (works fine)

$.post("verzenden.php", { note: content, action: "send", subject: subject },
function(data){ $("#myspan").html(data);
$("#myspan:contains('error')").css("color", "red");

[code]....

View 1 Replies View Related

JQuery :: Filter Portfolio With Checkboxes?

May 16, 2009

I wish to display a list of people on my website. These people are speakers who have different talents, or features. Male, female, high voice, low voice, german, english, persian, austrian ... a whole bunch of people. And I want to let my user use checkboxes to narrow down the speakers he could use for his production.

Here's the output filtering list (not complete, just rudimentary while I try to make it work)

<div id="filter">
<form>
<input name="speakerpool" class="checkfilter" type="checkbox" value="male" checked /> male<br>

[Code].....

My problem : I want to start with all checkboxes selected, showing all the people in this speakerpool, then narrow down as checkboxes get unchecked. This works well with combinations such as ".male .voice-low" which effectively removes all females and the other voices, I found here where I learned that is(".class1,.class2") is different to is(".class1.class2")

But, if I say, I want all english speakers, no matter if male or female, and I check male and female, I get none, since there is no speaker that is both male and female. At least not that I know of

Same issue with the voice-levels: most speakers either speak high or low or medium, yet I'd want to be able to check all those and get a comprehensive list, then.

My Question : Is there a way I can separate classes into class-groups or something? Maybe use prefixes like "sex-male, sex-female, language-english, language-german" and jQuery then uses the prefixes to check if they're supposed to be additive (?) or exlusive.

View 2 Replies View Related

JQuery :: Filter The XML Data Before Display?

Jan 5, 2011

I am trying to show the data from XML with categories (catalog name="Employee Services"), i want to filter the data before the display of each services, this pls

my xml
<catalog name="Employee Services" order="1" color="#CC0033" image="srv_emp.gif">
<service>

[code]....

View 1 Replies View Related

JQuery :: Get Multiple Combination Filter In It?

Nov 7, 2011

I have the requirement for.

filter the table with multiple columns there are 4 columns.

i.e 1>date 2> time 3>users 4>status.

here i got the filter for individual filter.

but i need the multiple filter.

eg:if i enter date and time, then the resultant table should be satisfies the given date and time entries. those rows only visible to the user.

View 3 Replies View Related

JQuery :: Catch The Property Of CSS Filter?

Jul 7, 2009

the image is like <img style="filter:progid:DXImageTransform.Microsoft.AlphaImageLoader (src='aa.png')" ... > $('img').css('filter') will get progid:DXImageTransform.Microsoft.AlphaImageLoader(src='aa.png') Can I get the aa.png directly?

View 1 Replies View Related







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