JQuery :: Plugin: SpinBox / SpinButton Control (with No Extra Markup)

Aug 11, 2006

I've been working on a Spin Control that uses only a standard textbox. <input type="text" /> With Javascript enabled the textbox looks and acts like a spin-button control without adding any extra elements. [URL] The up/down arrows are achieved using a background image, the rest is handled by Javascript/JQuery. I hope it is useful for some of you. I'm also working on a drop down date-picker that uses similar principles. (I just don't like solutions that add loads of extra markup!) Feedback/comments are welcomed, though I won't be able to respond to

View 12 Replies


ADVERTISEMENT

JQuery :: Plugin To Control Password Strength?

Jul 8, 2010

I'm looking for a plugin easy to use and implement to control password strength

View 2 Replies View Related

JQuery :: Plugin Does Not Show In The Admin Control Panel?

Aug 18, 2009

I am unable to see, or rather the plugin does not display in myadmin...I uploaded the plugin into my plugins folder (i have the latest WP)and i still cannot see it?

View 1 Replies View Related

JQuery :: Change The HTML Markup

May 13, 2011

how to modify the DOM with jQuery in order to correct an (dynamic) HTML structure. I have a markup like this:
Thinking about a replacewith or append or a combination??

<ul class="MyClass">
Test1 <br />Test2</ul>

But I need to get all texts in the UL be surronded by LIs, and to delete the br.

<ul class="MyClass">
<li>Test1<li>
<li>Test2</li></ul>

In real life this could be a like two text elements like in this example, but it´s dynamic so it could be like 3 or 15 or whatever sometimes.

View 2 Replies View Related

JQuery :: Only Select Text Node Without DOM Markup?

Jul 30, 2010

let's say I have this code markup:

<div id="id1">
This is some text
<div class="class1"><p>lala</p> Some markup</div>
</div>

What I would want is only the text "This is some text" without the child element's .class1 contents.

How would I do that? A normal selector would select "recursively", so how do I limit it to one level?

View 4 Replies View Related

JQuery :: Target Other Html Markup Around A Certain 'on Click' Item

Apr 19, 2010

I'm just starting out, and having a little difficulty understanding how to target other html markup around a certain 'on click' item.[code]So when the user clicks the anchor the text is inserted into the following textarea. I achieved this by:[code]

View 2 Replies View Related

JQuery :: Find Text And Wrap With Markup (or Replace)?

Feb 4, 2010

I have been trying to figure out how to find all instances of a certain word or phrase within an element and wrap those words in <span> tags or other html. I.e. change all instances of 'the keywords' to <span>the keywords</span>So far I've found a lot of references to :contains() but that will change the element the text is inside of rather than just the text itself

View 2 Replies View Related

JQuery :: Possible Replace Markup Tags Dependant On Browser?

Feb 10, 2011

On my site I use an SVG image. The <embed> tag works fine in Opera and Firefox. And <img> works fine in Chrome and Safari. I would like to know if it is possible to change the tag with an 'if' browser statement, and if it is ho would I write it.

if (jQuery.browser.webkit) {
* // Replace <embed> with <img>
}

View 2 Replies View Related

JQuery :: Access Elements In Dynamically Loaded Markup?

Aug 23, 2009

I have a js application, that loads formular-markup dynamically for a specific entity. Is there a way to access elements within this dynamically loaded markup through jquery?

eg.
in the form load function:
$('#container').empty().append($(entityForm.markup).addClass
("formContainer"));

[Code].....

View 1 Replies View Related

JQuery :: Rewrite Markup As Nested LI In Order To Use Treeview?

Oct 1, 2010

I have an application that produces a dynamic unordered list from DB categories table. The list is representing the hierarchy by adding a “..” (Double dot) in front of the list item name for each hierarchy level like so:

<ul id="categories">
<li>Cat1</li>
<li>..Cat1a</li>
<li>..Cat1b</li>

[Code].....

View 10 Replies View Related

JQuery :: Make Plug-in Work On Duplicate HTML Markup But Operate Separately?

Jun 22, 2011

I inherited Javascript and jQuery for a sliding belt (carousel) module. Basically, left and right navigation arrows would appear to the sides of the belt if there were more slides to show.

The jQuery and Javascript code was originally a singleton, so I decided to convert it into a jQuery plug-in in case the belt HTML markup was instantiated more than once. We have a CMS, so multiple belt modules theoretically could be placed on the same template.

Below is test page with two belts on the same page and the associated Javascript jQuery.

My problem is that when you click on the arrows or the slides, I found that the second belt works fine but not the first one. The first one does not show a left arrow when you page to the right. Likewise, the first belt gets mixed up going to the left. Somehow, only the second belt works as expected.

What I would like to do is when I attach my plug-in to a DIV, I want each belt to operate independently of each other (i.e keep its own local variables, functions, etc.).

I am not sure what I am missing here. what I am doing wrong? (You should be able to copy and paste the code into jsFiddle to see how it currently works.)

I have the page here also: [url]

<html>

View 3 Replies View Related

XML Node Containing Markup

Jul 13, 2006

I have an XML node called "myNode" and it contains:

"This is some text"

Now I can use the myNode.nodeValue property to get the string of text
above. But say myNode contains:

"This is <em>some text</em>"

The property myNode.nodeValue will now be "This is ". How can I get the
exact string above returned?

View 8 Replies View Related

Parsing Text With Markup Into Nodes

Jul 31, 2004

I'm trying to figure out how I can take user input from a textarea and insert it into a table as HTML. An example:

<script type="text/javascript">
<!--
function echo_input() {
var input = document.getElementById("user_input").value;
var cell = document.getElementById("display_area");
cell.childNodes[0].nodeValue = input;
}
//-->
</script>

<form>
<textarea id="user_input" name="user_input" onkeyup="echo_input();"></textarea>
</form>

<table>
<tr>
<td id="display_area">test</td>
</tr>
</table>

The childNodes[0] that the script keeps editing is the text node that starts out as "test". The problem is that I want the text that I put in the table to be parsed if any markup is in it (so that a <br /> will become a break, and not literally printed out as "<br />"), something that the DOM automatically escapes. It seems a very cumbersome means of doing this is to write a javascript parser, which would go through the text and create different types of nodes as it stumbles upon markup.

View 3 Replies View Related

Replace Markup Pattern Within A String?

Feb 22, 2010

Im trying to find if a particular html markup pattern (<ROD> ... </ROD>) within a string and if its found then replace it with another string.eg."This is my string and it might <ROD>PartNumber123</ROD> contain HTML markup"So in this case I want to replace "<ROD>PartNumber123</ROD>" with {0}. If there is no <ROD>...</ROD> then dont do anything.Im sure im doing this the wrong way, maybe a regular expression would be best.Although this works its not very clean and I just cant find the correct solution.

function parseData(data){
var r1 = data.indexOf("<ROD>",0);
var r2 = data.indexOf("</ROD>",0);

[code]....

View 2 Replies View Related

Enhancing Structural Markup With JavaScript

Dec 10, 2003

This is a dedicated thread for discussing the SitePoint article 'Enhancing Structural Markup with JavaScript'

View 20 Replies View Related

JQuery :: Add An Extra Parameter On Every Call?

Aug 31, 2011

I want to add an extra parameter like check sum of all data in every jQuery ajax request.For this i use following technique.

jQuery(document).ajaxSend(function(evt, xmlhttpRequest, settings){
if (settings.data == null) {
settings.data = "";

[code]....

View 8 Replies View Related

Need Next-previous Control To Control Contents Within An IFrame?

Oct 10, 2011

Situation:I have a very long page divided into many sections vertical-wise marked by bookmarks, say pageX.html#s1 to s10. I need to show the section inside an iframe (iFrame1) on the mainpage (mainpage.html). I am thinking of having 4 buttons, sitting on the mainpage, to help navigate between these sections on pageX, namely NEXT, PREVIOUS, TOP, END.condition of the frame, fixed width/height, no scroll, no border.Very new to javascript but need this code to make a page work for BIZ.

View 1 Replies View Related

Unobtrusive - Remove Event Handing From The Markup?

Jul 12, 2009

From my understanding the main feature of unobtrusive JavaScript is to remove event handing from the markup.The main reason for doing this is to avoid repetition of code.There are also other reasons but that is the main one. e.g. no having to write <tag onclick="function()" > over and over again. This traditional event handling method makes code less maintainable.However is it worth writing unobtrusive code when we consider the following:

1, Server sider scripting laguages can be used to avoid code repetition. e.g. we can use a loop to add multiple onclick event handlers to all the elements of a navigation list. Thus we would only have to write onclick="function()" once.

2, Unobtrusive coding makes the code harder to follow.It is easier to look at the markup to find out what happens when an event occurs on an element rather than having to look through wades of JS code to find the correct event listener. This is especially true when a team is working on a project. It is easier to find out what another person has done when the traditional model of event handling is used.

3, Unobtrusive coding means longer and more complicated code. Also there there is a need for having to deal with browser differences.I know this can be reduced using libraries such as JQuery. Is it worth using such a library?

View 2 Replies View Related

JQuery :: Adding An Extra List Item At The End?

Apr 18, 2011

So let's say I have a list

<ul>
<li>Item 1</li>
<li>Item 2</li>

[code]....

View 8 Replies View Related

JQuery :: Add Extra Content To The Title Attribute?

Aug 10, 2009

<div>
</div><div>This is hopefully simple. I have a bunch of links with titles, like TITLE="Facebook" and so on. I am adding JQuery to make the links open in a new window and

[code]....

View 7 Replies View Related

JQuery :: Creating Extra Large Radio Buttons?

Feb 21, 2011

I cannot believe this is NOT possible but thus far, I've scoured the web for hours looking for an easy way to make a radio button about 10 times larger than it normally is, and make it use custom colors. For example, I'd like to use custom images for the "selected" "unselected" and forgo the normal radio button entirely. However, I'm hoping to keep the radio button as an input method in the HTML, since jQuery has some super useful tools to manipulate input via radiobutton (or other selectors).

View 3 Replies View Related

JQuery :: Dynamic Accordion Leaving A Lot Of Extra Space?

Feb 1, 2011

I have an accordion in which all the data is being populated from a database. The problem is that after it runs through the query and adds my data it leaves alot of extra spaces which leads the user to have to scroll a great deal before finding the next header.

Here is my code.

<?
$sqlQuery = "SELECT id, date, name FROM webinars ";
$result = mysql_query($sqlQuery);
?>

[Code].....

View 2 Replies View Related

JQuery :: Flipv Vertical Text And Extra Space

Sep 13, 2009

I'm currently using the Jquery Flipv plugin, which works well. The only problem is, some words have extra padding at the end, depending on how many characters.

I'm not sure why this is, but it seems that the conversion to vertical text creates some extra spacing on certain browsers.

View 2 Replies View Related

JQuery :: Extra Callback Fired When Stop() Is Called On A Different Element?

May 29, 2011

I've been banging my head against this extremely frustrating bug but I finally managed to get an isolated test case. Call .animate() on two different elements one after the other and give the second one a "complete" callback. In the callback function call .stop() on the first element, the one with no callback.

The callback function should only fire once (when the second element's animation completes) but instead it fires twice. It only occurs when the animations are started in that order and stop() is called inside the callback.[URL]...

View 1 Replies View Related

JQuery :: Superfish Menu Css Question - Li.sf-with-ul Has An Extra Bottom Padding?

Jul 12, 2011

the "li.sf-with-ul" class has extra padding which i can't seem to find where its coming from.[URL]..menu items with UL under them (sub items) have padding that makes the items different from the normal links. i would like to get rid of it. i can't find anything related to this in the CSS.

View 12 Replies View Related

JQuery :: Passing Extra Parameters To Ajax Check With Validation-Engine?

Feb 3, 2011

I like the looks of the validation engine plugin, but I can't figure out one thing... For a particular form field, I need to use an Ajax service to validate the data. I have to pass the value of the text input, of course, but I also need to pass a couple of other key=value pairs along with it. In the file with the selectors there's the option to add extraData (like extraData="name=eric") but I need to set these parameters based on some dynamic info.Is there a way to pass extra information to the ajax service?

View 1 Replies View Related







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