Foros del Web » Programando para Internet » Jquery »

Formulario en AJAX & jQuery no funciona porque hace conflicto con otro script

Estas en el tema de Formulario en AJAX & jQuery no funciona porque hace conflicto con otro script en el foro de Jquery en Foros del Web. Hola, En estos últimos días he trabajado en un sitio que está echo en WordPress. En una página de este he montado un formulario en ...
  #1 (permalink)  
Antiguo 30/04/2012, 13:26
Avatar de WeRunTheNite  
Fecha de Ingreso: abril-2012
Ubicación: México, D.F.
Mensajes: 1
Antigüedad: 12 años
Puntos: 0
Exclamación Formulario en AJAX & jQuery no funciona porque hace conflicto con otro script

Hola,

En estos últimos días he trabajado en un sitio que está echo en WordPress. En una página de este he montado un formulario en AJAX y jQuery, pero no funciona ya que el tema que uso tiene un código que hace conflicto.

Este es el formulario:

Código HTML:
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script>
<script type="text/javascript">
function submitForm() {
	jQuery.noConflict();
	$.ajax({type:'POST', url:'http://fullmaintenance.info/create.php', data:$('#ContactForm').serialize(), success: function(response) {
		$('#ContactForm').find('.form_result').html(response);
	}});
	return false;
	}
</script>
<form id="ContactForm" onsubmit="return submitForm();">
	Your Name: <input type="text" name="name" value="" /><br /> 
	Your Email: <input type="text" name="email" value="" /><br /> 
	Your Message:<br /> <textarea style="width: 200px; height: 100px;" name="message"></textarea>
	<br /><br /> 
	<input type="submit" name="submit" value="Submit" />
	<div class="form_result">&nbsp;</div>
</form> 
Funciona correctamente el formulario, aunque cabe mencionar que únicamente me funcionó en mi hosting. Desde mi PC no muestra el resultado del formulario, pero hace la función en AJAX y no en post como un formulario común y corriente.

Al agregar el código cufon, no hace la función en AJAX y hace el post como un formulario normal (de echo lo hace en GET):

Código HTML:
<script type="text/javascript">
	//<![CDATA[
		jQuery.noConflict();
		
		jQuery(document).ready(function(){
			var sf = jQuery.fn.superfish,
				is_ie = jQuery.browser.msie;
			
			jQuery.fn.hideSuperfishUl = function(){
				var o = sf.op,
					not = (o.retainPath===true) ? o.$path : '';
				o.retainPath = false;
				var $ul = jQuery(['li.',o.hoverClass].join(''),this).add(this).not(not).removeClass(o.hoverClass)
						.find('>ul').animate({opacity:'hide',height:'hide'},200);
				o.onHide.call($ul);
				return this;
			}
			
			var $top_menu = jQuery('ul.nav');
					
			$top_menu.superfish({ 
				delay:       200,                            // one second delay on mouseout 
				animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation 
				speed:       200,                          // faster animation speed 
				autoArrows:  true,                           // disable generation of arrow mark-up 
				dropShadows: false,                            // disable drop shadows
				onBeforeShow: function() {
					if ( this.parent('li').css('background-image') === 'none' ) {
						if (!is_ie)
							this.parent('li').find('>a').fadeTo('fast',.5).siblings('span.menu_arrow').stop(true, true).animate( {opacity:'show', top:'-5px'}, 400);
						else 
							this.parent('li').find('>a').siblings('span.menu_arrow').stop(true, true).animate( {opacity:'show', top:'-5px'}, 400);
					}
				},
				onHide: function() {
					if (!is_ie)
						this.parent('li').find('>a').fadeTo('fast',1).siblings('span.menu_arrow').stop(true, true).animate( {opacity:'hide', top:'-15px'}, 400);
					else
						this.parent('li').find('>a').siblings('span.menu_arrow').stop(true, true).animate( {opacity:'hide', top:'-15px'}, 400);
				}
			});
					
			$top_menu.find('> li > ul').parent('li').addClass('sf-ul');
			
			$top_menu.find('> li').each(function(index,domEle) {
				$li = jQuery(domEle);
				if ($li.css('background-image') === 'none')
					$li.append('<span class="menu_arrow"></span>');
			}).find('> ul').prepend('<span class="menu_top_arrow"><span>');
			
			var menu_arrow = 'span.menu_arrow';
					
			$top_menu.find('>li:not(.sf-ul) > a').hover(function(){
				if ( jQuery(this).parent('li').css('background-image') === 'none' ) {
					if (!is_ie) 
						jQuery(this).fadeTo('fast',.5).siblings('span.menu_arrow').stop(true, true).animate( {opacity:'show', top:'-5px'}, 400);
					else
						jQuery(this).siblings('span.menu_arrow').stop(true, true).animate( {opacity:'show', top:'-5px'}, 400);
				}
			},function(){
				if (!is_ie) 
					jQuery(this).fadeTo('fast',1).siblings('span.menu_arrow').stop(true, true).animate( {opacity:'hide', top:'-15px'}, 400);
				else
					jQuery(this).siblings('span.menu_arrow').stop(true, true).animate( {opacity:'hide', top:'-15px'}, 400);
			});
			
			if (!is_ie) {
				$top_menu.find('li ul a').hover(function(){
					jQuery(this).fadeTo('fast',.5);
				},function(){
					jQuery(this).fadeTo('fast',1);
				});
			}
			
			var $searchform = jQuery('#searchform');
			
			jQuery('#header a#search').toggle(
				function () { $searchform.animate( {opacity:'toggle', left:'-220px'}, 500); },
				function () { $searchform.animate( {opacity:'toggle', left:'-230px'}, 500); }
			);
			
			et_search_bar();
			
			var $featured_content = jQuery('#featured_content'),
				$service_tabs = jQuery('#services'),
				$home_tabs = jQuery("ul#main-tabs");
			
			if ($featured_content.length) {
				$featured_content.cycle({
					timeout: 4000,			
					speed: 500,
					cleartypeNoBg: true,
					cleartype: true, 
					pager: 'div#controllers',
					fx: 'fade',
					pause: 1});
			}
			
			et_service_tabs($service_tabs);		
				
			var $footer_widget = jQuery("#footer-widgets .widget");
			
			if (!($footer_widget.length == 0)) {
				$footer_widget.each(function (index, domEle) {
					// domEle == this
					if ((index+1)%4 == 0) jQuery(domEle).addClass("last").after("<div class='clear'></div>");
				});
			}
			
			<!---- Search Bar Improvements ---->
			function et_search_bar(){
				var $searchform = jQuery('#header div#search-form'),
					$searchinput = $searchform.find("input#searchinput"),
					searchvalue = $searchinput.val();
					
				$searchinput.focus(function(){
					if (jQuery(this).val() === searchvalue) jQuery(this).val("");
				}).blur(function(){
					if (jQuery(this).val() === "") jQuery(this).val(searchvalue);
				});
			};		
			
			<!---- Service Tabs ---->
			function et_service_tabs($service_tabs){
				var active_tabstate = 'ui-state-active',
				active_tab = 0,
				$service_div = $service_tabs.find('>div').hide(),
				$service_li = $service_tabs.find('>ul>li');
			
				$service_div.filter(':first').show();
				$service_li.filter(':first').addClass(active_tabstate);
						
				$service_li.find('a').click(function(){
					var $a = jQuery(this),
						next_tab = $a.parent('li').prevAll().length,
						next_tab_height = $service_tabs.find('>div').eq(next_tab).outerHeight();
					
					if ( next_tab != active_tab ) {
						$service_tabs.css({height:next_tab_height});
						$service_div.filter(':visible')
							.animate( {opacity: 'hide'},500, function(){
								jQuery(this).parent().find('>div').eq(next_tab).animate( {opacity: 'show'},500 );
							} )
							//.end()
							//.eq(next_tab)
							//.animate( {opacity: 'show'},500 )
							;
						$service_li.removeClass(active_tabstate).filter(':eq('+next_tab+')').addClass(active_tabstate);
						active_tab = next_tab;
					}
					
					return false;
				}).hover(function(){
					if ( !jQuery(this).parent('li').hasClass(active_tabstate) && !is_ie ) jQuery(this).fadeTo('slow',.7);
				}, function(){
					if (!is_ie) jQuery(this).fadeTo('slow',1);
				});
			}
			
			var maintabswidth = $home_tabs.width();
			var maintabsleft = Math.round((960 - maintabswidth) / 2);
			if ( maintabswidth < 960 ) $home_tabs.css('left',maintabsleft);
			
			jQuery('.js #featured .container').css('visibility','visible');
			jQuery('.js #featured').css('background','none');
			
						 
			window.setInterval( function() {Cufon.refresh('#main-tabs a');}, 100 ); 
			 
			Cufon.now();
		});
	//]]>	
</script> 
Necesito tener los 2 códigos funcionando al mismo tiempo, obviamente que ambos cumplan su función. ¿Podrían ayudarme? De antemano, muchísimas gracias.

Etiquetas: ajax, formulario, wordpress
Atención: Estás leyendo un tema que no tiene actividad desde hace más de 6 MESES, te recomendamos abrir un Nuevo tema en lugar de responder al actual.
Respuesta




La zona horaria es GMT -6. Ahora son las 18:16.