Modifying And Writing Contents Of A TextRange

Jul 23, 2005

I’m trying to modify a DHTML editor that parses a style-sheet
via PHP and instead of modifying the tags via execCommand(), find a
way of writing inline styles by way of adding <span style=> tags
around the selected text.

Easier said than done. My first though was to do a search and replace
on the innerHTML, but falls down if there is more than one match (it
will only modify the first occurrence). I suspect that even if I could
find the text around the selected area, this could still fall down for
same reason.

So, I’ve got the selected text via the createTextRange() method.
How do I modify this text and write it back out to the textarea.

View -1 Replies


ADVERTISEMENT

JQuery :: Modifying Css Of Iframe Contents?

Apr 15, 2011

So I have a wordpress site I'm just quickly prototyping the design of for my 3D portfolio.I'm using an iframe to display another html page I have for my resume. I want to use jQuery to remove the css paddingYou can see the code that wordpress outputs over herePageCodeThe iframe code in specific is

<iframe src
="/Resume/resume.html"id
="ifres

[code].....

View 4 Replies View Related

From Caret To TextRange Object

Jul 23, 2005

in a DHTML Editing control (MSIE), I need to "extend" the caret to the
nearest text character in order to obtain a text selection (and than a
textRange object with the createRange method).

This is needed because I have a set of functions doing operations
within the edit control's rich text. But all the functions need to
start from a selected text (for example, adding a table row). My aim is
to get the things work also if no text is selected from the user. But I
could not find a way to have a selected text starting from the simple
cursor position.

View 1 Replies View Related

How Can I Use Regular Expression Search In TextRange Object?

Jul 23, 2005

I want to know how can I use regular expression in TextRange Object.

I wrote specific word highlighting code and it is working now.
but this is static word highlighting.

I want to emplement dynamic word highlighting using regular
expression.

View 3 Replies View Related

Analyze The Contents Of A Textbox And Replace The Contents With The Appropriate Date?

Jul 15, 2009

I'm looking for javascript to analyze the contents of a textbox and replace the contents with the appropriate date. To make that a little clearer, if the user types 'tomorrow' then when they tab/move onto the next text box the 'tomorrow' text should be replaced with the date for tomorrow in the format dd/mm/yyyy, if the user enters '1 week' then the text should be replaced with the date in one week in the format dd/mm/yyyy etc.

View 1 Replies View Related

Modifying An Event

Jul 19, 2007

I have the following:

<tr onMouseOver="alert('Over a row')">

and I want to modify the event to be:

<tr onMouseOver="alert('Over THIS row')">

in other words reaching into the event, and changing some part of it.

I have tried walking through the attributes of the <truntil I reach
the onclick, then changing its value, but that throws an error.

View 1 Replies View Related

Modifying Css Style Of An ID

Oct 21, 2011

By default the style of #pricea in my stylesheet is visibility="hidden";

<script type="text/javascript">
function arrow(boxName){
document.getElementById(boxName).style.visibility = "visible";
}
</script>
[Code]...

View 2 Replies View Related

Jquery :: ()load Function Not Working - Change Contents Of A Div Named "sub2" With Contents Of "pets.html"

May 2, 2011

Im currently working on a project with jquery... the thing is.. i need to change the contents of a div named "sub2" with the contents of "pets.html"... i've read some tutorials and i thought the best way to do this is through the use of jquery...

Here's my code:

My image which is supposed to be clicked contains this:

The code is working ., but when i transfer my codes to netbeans with Tomcat running the code didnt work ...

Is there anyone here who knows what's wrong or what should i do with my code?

View 1 Replies View Related

Modifying ChildNodes Of A Cloned Div

Nov 23, 2005

I have a div 'readroot' that I clone. I change the change the id and
name of the childnodes of 'readroot' to the original name plus a
number(counter).

The problem is I have i have a div 'serials' inside 'readroot' and the
childnodes of 'readroot' are not modified with the current function i have.

What is the best way to modify the childnodes of the div serials?

I guess i could put another for loop inside the for loop of the
moreFields function but i am thinking a recursive function could do it. Code:

View 2 Replies View Related

Modifying Pull-down Menus

Mar 17, 2007

I have a page with 2 drop-down menus. The task is, when you select
1 menu, your selection then changes the options available in the
other. This data happens to be drawn from a mysql database, so I
wouldn't think that it could be done purely in Javascript, but rather
a combination of PHP generating some JS code. Thing is, I don't even
see how to change a menu's available options with JavaScript, only
names and values of individual fields.

View 2 Replies View Related

Modifying HTML Table Through DOM

Jul 20, 2005

The basic concept is a music playlist that I'm trying to write as a
table inside a div.

I have Song and Playlist 'classes'. The Song class has a Write()
method, as does the Playlist.

The Song.Write() boils down to this:
var tr = document.createElement("TR");
var td = document.createElement("TD");
tr.id = this.ID;
tr.appendChild(td);
td.innerText = this.Artist + ' - ' + this.Title;
td.onclick = function() {top.playSong(this.parentElement.id);}
return tr;

The Playlist.Write() call is essentially this:
// this.songs is an Array of Song objects
for (var x = 0; x < this.songs.length; x++) {
playlistTable.appendChild(this.songs[x].Write());
}

When I attempt to call playlistTable.appendChild() after creating the
table via document.createElement("Table"), everything works fine,
except I have no way to add the table to my document, since the div I
want it in won't believe that appendChild() is a valid method. If I
put the table in the div as a <TABLE>, and then try to append to that,
the *table* doesn't accept appendChild() as valid. Specifically, I get
an 'Invalid argument' error when calling either.

View 3 Replies View Related

Modifying An Autocomplete Script?

May 1, 2009

I have been working on an autocomplete script that I have modified to be used with JSP's/Servlets. The script is working very nicely, except for one minor issue. When the user selects from the suggestions in the drop down list, for some unexplained reason, an extra space is added to the word in the text field. Also, I would like to modify this script further, such that if a user enters more than one word in the text field, the autocomplete script is activated for each word, instead of ONLY the first word.

I have added the entire code for the JavaScript file that is responsible for the autocomplete feature below.

The link from where you can download the autocomplete files is here:

[URL]

a demo of the script can be found here:

[URL]

FYI, I am using the version that uses XML.

Below is the JavaScript code for the autocomplete file I am using:

if(typeof(bsn)=="undefined")_b=bsn={};if(typeof(_b.Autosuggest)=="undefined")_b.Autosuggest={};else alert("Autosuggest is already set!");_b.AutoSuggest=function(b,c){if(!document.getElementById)return 0;this.fld=_b.DOM.gE(b);if(!this.fld)return

[Code]....

View 3 Replies View Related

Modifying Content Before It Is Rendered

Sep 20, 2006

How can I modify a page before it is rendered? I tried using greasemonkey to remove a script, but it runs it anyway. Is there some way I can get rid of a script on a page before it runs.

What I originally tried to do was removeChild, but that of course is done after the page is rendered. Then I tried wrapping the script in <noscript> tags, and it still was executed.

View 6 Replies View Related

Modifying The Look / Function Of An Alert Box

Nov 8, 2010

<script type="text/javascript">
function confirmation()
{
alert(
"Please Confirm Before Proceeding !" +
"
" +
"Display Name: " + document.forms["paypal"]["os0"].value +
[Code]....

First though JS is not my strong suit and the above code is something I found at the W3School site or whatever it is. What I would like to do if possible is add a Cancel button to the alert box that when clicked cancels the form submission it's attached to and keeps the user on the current page to modify the data they entered in to the form should they want to change it. As it stands, all there is is an Ok button and if you click the red x in the corner it acts as if you clicked ok so if a user wanted to change their form data they'd have to close the browser to start again. Aside from liking to add a cancel button I would also like to if possible change the alerts Ok button to read something different. Not sure yet, thinking either Submit or Proceed.

View 1 Replies View Related

Add / Modifying Elements In XML Document

Jun 15, 2010

finding a solution of add/modifying the Elements in XML Document using Javasript.

View 2 Replies View Related

Modifying Form Data Before Submission

Jul 20, 2005

I have a form which houses basic inputs, as well as a few multiple select forms.

I need to parse all the 'values' which are in this multiple select form (it
gets manipulated dynamically client side). I wanted to create a function
that loops through all the form elements, and if the type 'select-multiple'
is detected, gather the VALUES of each <option> inside it.

The bit I'm stuck on is then how to reconstruct this into a form submission.
Preferably I wanted the data from the 'select-multiple' element to be
submitted as comma delimited, eg 14,12,512,63,62 which would later be parsed
by PHP.

I was considering reconstructing a query string and submitting that as GET,
but I'd prefer to POST it along with the other data (such as INPUTS etc)
which do not need to be changed.

Can I somehow attach some 'hidden' type data onto the end of the form
submission at this point?

View 2 Replies View Related

JQuery :: Modifying From Default Setting?

Apr 17, 2010

I'm trying to make a blog and I am facing a problem with the plugin using jQuery 'sidebarTabs'.

The blog is here Paris sportifs My question is: Is it possible to display no one sub-category(none) instead of all sub-categories related to the first title ('Paris Sportifs') The creator of the plugin was very friendly and made me good service, but he said that it is not possible because the jQuery library by default is set to display the first sub-section ('Les bases pour débuter etc

[Code]...

View 2 Replies View Related

JQuery :: Modifying The Href Of An Image With An Id?

Sep 28, 2011

sorry for the stupid question but how can i modify the href atribute of the link without having a id of the "<a>" just because it's the link of an image with an id?

<a href="anything.jpg"><img id="winkelchen" src="anythingelse.jpg" /></a>

View 2 Replies View Related

Prevent User From Modifying Browser URL?

Dec 12, 2010

I own a game site and some users cheat by changing the browser URL. For example :

The URL for starting a game mission is this : ww.somesite.com/somethingaspx?htxm=18

And if they change the number to 87 they go to the end of he mission WITHOUT actually completing it.

They ONLY way to deal with this is by preventing users from changing the URL manually. Is there a way to do it? Like, if someone tries to change that number in the URL he gets a message and browser window closed(or something that will prevent him from going to that page)

Of course, the solution must not conflict with the normal navigation(which is the actual mission) which means the user should be able to navigate to different pages but NOT change the URL manually.

View 10 Replies View Related

Modifying Webpage Repeatedly To Add Features?

May 3, 2009

All semester, I have been working on a single web page, modifying it repeatedly to add features (using CSS). This last assignment involves javascript, something we've just barely touched on. I can't seem to figure out where exactly the event handler should be placed. No matter where I move it, it alters the way the page displays. In the right column, there are descriptions of 2 musicians, each includes a header, paragraph, and a thumbnail (that links to a larger image) on the far right side, next to the text.

I need to add this
<a href="#" onmouseover=
"alert( 'Concerts sell out quickly so act fast!');">Melanie Morris entertains with her melodic folk style.</a>
to this
<h3>January</h3>
<a href="melanie.jpg"><img src="melaniethumb.jpg" alt="Melanie Morris" width="100" height="97" align="right" border="0" hspace="150" /></a>
<p class="content">Melanie Morris entertains<br />
with her melodic folk style.<br />
Check out the podcast!<br />
CDs are now available.
</p>

The problem is, the book doesn't explain where to add it or have any examples of using onmouseover in this particular way, so I've spent forever trying to figure it out. In some places, it makes the sentence shows up twice. In others, it completely moves the picture out of position and/or extends the "Melanie Morris entertains with her melodic folk style" all the way across the page (thus, pushing the picture down). I initially had a very hard time making this page layout work (specifically, getting the images to show up in the right place).

The best I am getting from this is adding the mouseover immediately after the paragraph class and right before the Check out the podcast! line...removing from the paragraph the text that is repeated. It seems to look OK on IE, both full screen and when I make the screen smaller. Foxfire is displaying it less reliably though. As soon as I make the window smaller, the layout shifts. I know that it's normal for different browsers to display differently.

Any way to work around the rules so that it looks right, but is not, in fact, coded properly.
<h3>January</h3>
<a href="melanie.jpg"><img src="melaniethumb.jpg" alt="Melanie Morris" width="100" height="97" align="right"
border="0" hspace="150" /></a>
<p class="content">
<a href="#" onmouseover=
"alert( 'Concerts sell out quickly so act fast!');">Melanie Morris entertains with her melodic folk style.</a>
Check out the podcast!<br />
CDs are now available.
</p>

View 5 Replies View Related

Modifying Existing Navigational Menus?

Mar 26, 2009

I contacted the authors of the codes but they have not responded to me so I hope someone here can give me some answers. Below are the two menu scripts I will be referring to:[URL]... Currently, I'm using HVMenu. It's a great piece of code and I love using it. As the code exists right now, the first sub-level sits just right below the main menu bar: For my recent project, I want to be able to make the first sub-level to overlap the main menu when it's in a horizontal state.

This only works with HVMenu if it's in a vertical state. So, I looked into using Top Nav Bar III. It works perfectly! Except it doesn't allow for images in the coding. (At least, I couldn't figure out how to mod it to get an image background and rollover images like HVMenu).

Ultimately, I want to code this menu: Notice that up arrow that butts up into the main menu bar? This is why I need it to overlap. So now, does anyone have any fixes for either of the scripts I'm using OR have alternate suggestions?

View 4 Replies View Related

Modifying Properties Of ASP.NET Form Elements

Mar 2, 2011

I'd like to change some properties of ASP Form Elements via Javascript and I am having a very difficult time doing so. The element is defined as:

[Code]...

View 1 Replies View Related

JQuery :: Styling And Modifying The MultiFile Plugin?

Oct 5, 2007

I would like to know how one can syle the multifile plugin, I wouldalso like to change the placement or make the file queue invisible.

View 2 Replies View Related

JQuery :: Modifying Css Datas For A @media Rule?

Sep 16, 2010

I suppose than my css file has different rules for the same element depending of the media @media print #image { clip: rect(auto, 700px, 1200px, auto);} @media screen
#image {clip: rect(auto, 1024px, 700px, auto);} Can I dynamically change the css data "clip" only for the @print media ?

View 2 Replies View Related

JQuery :: Modifying Elements Before Page Loads

Jul 21, 2011

I'm using Chrome and it's JSShell extension I remove the <emb> and some <iframe> tags from a lot of different sites because their annoying ads.

The I use code for most sites looks like this:

It doesn't do anything. If I don't use $(document).ready() it removes all the ads. Is there a way to do that before loading the document or am I doing something wrong.

View 1 Replies View Related

Modifying Random Background Image To ORDERED

Jun 29, 2010

I am using this script to rotate background images and it is working great HOWEVER we would like to control the order of the rotation and I am just not sure how to modify this code to do that? I have looked and tried several options but I am just missing something

[Code]...

View 2 Replies View Related







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